生态系统
生态系统
¥Ecosystem
Fastify 团队维护的插件列在 核心 下,而社区维护的插件列在 社区 部分。
¥Plugins maintained by the Fastify team are listed under Core while plugins maintained by the community are listed in the Community section.
核心
¥Core
-
@fastify/accepts在你的请求对象中包含 accepts。¥
@fastify/acceptsto have accepts in your request object. -
@fastify/accepts-serializer根据Accept标头序列化以输出。¥
@fastify/accepts-serializerto serialize to output according to theAcceptheader. -
@fastify/auth在 Fastify 中运行多个身份验证函数。¥
@fastify/authRun multiple auth functions in Fastify. -
@fastify/autoload需要目录中的所有插件。¥
@fastify/autoloadRequire all plugins in a directory. -
@fastify/awilix基于 awilix 的 Fastify 依赖注入支持。¥
@fastify/awilixDependency injection support for Fastify, based on awilix. -
@fastify/aws-lambda允许你在 AWS Lambda 和 Amazon API Gateway 上使用 Fastify 轻松构建无服务器 Web 应用/服务和 RESTful API。¥
@fastify/aws-lambdaallows you to easily build serverless web applications/services and RESTful APIs using Fastify on top of AWS Lambda and Amazon API Gateway. -
@fastify/basic-authFastify 的基本身份验证插件。¥
@fastify/basic-authBasic auth plugin for Fastify. -
@fastify/bearer-authFastify 的 Bearer 身份验证插件。¥
@fastify/bearer-authBearer auth plugin for Fastify. -
@fastify/caching常规服务器端缓存和 ETag 支持。¥
@fastify/cachingGeneral server-side cache and ETag support. -
@fastify/circuit-breaker用于路由的低开销断路器。¥
@fastify/circuit-breakerA low overhead circuit breaker for your routes. -
@fastify/compressFastify 压缩实用程序。¥
@fastify/compressFastify compression utils. -
@fastify/cookie解析并设置 cookie 标头。¥
@fastify/cookieParse and set cookie headers. -
@fastify/cors启用在 Fastify 应用中使用 CORS。¥
@fastify/corsEnables the use of CORS in a Fastify application. -
@fastify/csrf-protection用于为 Fastify 添加 CSRF 保护的插件。¥
@fastify/csrf-protectionA plugin for adding CSRF protection to Fastify. -
@fastify/elasticsearch插件共享相同的 ES 客户端。¥
@fastify/elasticsearchPlugin to share the same ES client. -
@fastify/env加载并检查配置。¥
@fastify/envLoad and check configuration. -
@fastify/etag自动为 HTTP 响应生成 ETag。¥
@fastify/etagAutomatically generate ETags for HTTP responses. -
@fastify/expressFastify 的 Express 兼容层。¥
@fastify/expressExpress compatibility layer for Fastify. -
@fastify/flash使用会话设置和获取 flash 消息。¥
@fastify/flashSet and get flash messages using the session. -
@fastify/formbody插件解析 x-www-form-urlencoded 主体。¥
@fastify/formbodyPlugin to parse x-www-form-urlencoded bodies. -
@fastify/funky使 Fastify 中的函数式编程更加方便。添加对返回功能结构的 Fastify 路由的支持,例如 Either、Task 或普通无参数函数。¥
@fastify/funkyMakes functional programming in Fastify more convenient. Adds support for Fastify routes returning functional structures, such as Either, Task or plain parameterless function. -
@fastify/helmetFastify 的重要安全标头。¥
@fastify/helmetImportant security headers for Fastify. -
@fastify/hotwire将 Hotwire 模式与 Fastify 结合使用。¥
@fastify/hotwireUse the Hotwire pattern with Fastify. -
@fastify/http-proxy使用钩子将你的 HTTP 请求代理到另一台服务器。¥
@fastify/http-proxyProxy your HTTP requests to another server, with hooks. -
Fastify 的
@fastify/jwtJWT 实用程序,内部使用 fast-jwt。¥
@fastify/jwtJWT utils for Fastify, internally uses fast-jwt. -
@fastify/kafka插件与 Apache Kafka 交互。¥
@fastify/kafkaPlugin to interact with Apache Kafka. -
@fastify/leveldb插件在 Fastify 上共享通用 LevelDB 连接。¥
@fastify/leveldbPlugin to share a common LevelDB connection across Fastify. -
@fastify/middieFastify 的中间件引擎。¥
@fastify/middieMiddleware engine for Fastify. -
@fastify/mongodbFastify MongoDB 连接插件,使用它你可以在服务器的每个部分共享相同的 MongoDB 连接池。¥
@fastify/mongodbFastify MongoDB connection plugin, with which you can share the same MongoDB connection pool across every part of your server. -
@fastify/multipartFastify 的多部分支持。¥
@fastify/multipartMultipart support for Fastify. -
@fastify/mysqlFastify MySQL 连接插件。¥
@fastify/mysqlFastify MySQL connection plugin. -
@fastify/nextjs使用 Next 为 Fastify 提供 React 服务器端渲染支持。¥
@fastify/nextjsReact server-side rendering support for Fastify with Next. -
@fastify/oauth2环绕simple-oauth2。¥
@fastify/oauth2Wrap aroundsimple-oauth2. -
@fastify/one-line-logger将 Fastify 的日志格式化为一行漂亮的消息。¥
@fastify/one-line-loggerFormats Fastify's logs into a nice one-line message. -
@fastify/otelOpenTelemetry 检测库。¥
@fastify/otelOpenTelemetry instrumentation library. -
@fastify/passport使用 Passport 策略对请求进行身份验证并保护路由。¥
@fastify/passportUse Passport strategies to authenticate requests and protect route. -
@fastify/postgresFastify PostgreSQL 连接插件,使用它你可以在服务器的每个部分共享相同的 PostgreSQL 连接池。¥
@fastify/postgresFastify PostgreSQL connection plugin, with this you can share the same PostgreSQL connection pool in every part of your server. -
@fastify/rate-limit用于路由的低开销速率限制器。¥
@fastify/rate-limitA low overhead rate limiter for your routes. -
@fastify/redisFastify Redis 连接插件,使用它你可以在服务器的每个部分共享相同的 Redis 连接。¥
@fastify/redisFastify Redis connection plugin, with which you can share the same Redis connection across every part of your server. -
@fastify/reply-from用于将当前 HTTP 请求转发到另一台服务器的插件。¥
@fastify/reply-fromPlugin to forward the current HTTP request to another server. -
@fastify/request-context基于 AsyncLocalStorage(回退到 cls-hooked)的请求范围存储,提供类似于线程本地存储的功能。¥
@fastify/request-contextRequest-scoped storage, based on AsyncLocalStorage (with fallback to cls-hooked), providing functionality similar to thread-local storages. -
@fastify/response-validation启用 Fastify 响应验证的简单插件。¥
@fastify/response-validationA simple plugin that enables response validation for Fastify. -
@fastify/routes提供Map路由的插件。¥
@fastify/routesPlugin that provides aMapof routes. -
@fastify/routes-stats使用node:perf_hooks提供路由的统计信息。¥
@fastify/routes-statsProvide stats for routes usingnode:perf_hooks. -
@fastify/schedule基于 toad-scheduler 安排定期作业的插件。¥
@fastify/schedulePlugin for scheduling periodic jobs, based on toad-scheduler. -
@fastify/secure-session为 Fastify 创建一个安全的无状态 cookie 会话。¥
@fastify/secure-sessionCreate a secure stateless cookie session for Fastify. -
@fastify/sensible每个人都同意的 Fastify 默认值。它添加了一些 有用的装饰器,例如 HTTP 错误和断言,还添加了更多请求和响应方法。¥
@fastify/sensibleDefaults for Fastify that everyone can agree on. It adds some useful decorators such as HTTP errors and assertions, but also more request and reply methods. -
@fastify/session是 Fastify 的会话插件。¥
@fastify/sessiona session plugin for Fastify. -
@fastify/sseFastify 中用于支持服务器发送事件 (SSE) 的插件。¥
@fastify/ssePlugin for Server-Sent Events (SSE) support in Fastify. -
@fastify/static用于尽可能快地提供静态文件的插件。¥
@fastify/staticPlugin for serving static files as fast as possible. -
@fastify/swagger用于为 Fastify 提供 Swagger/OpenAPI 文档的插件,支持动态生成。¥
@fastify/swaggerPlugin for serving Swagger/OpenAPI documentation for Fastify, supporting dynamic generation. -
@fastify/swagger-ui用于提供 Swagger UI 的插件。¥
@fastify/swagger-uiPlugin for serving Swagger UI. -
@fastify/throttle用于限制请求下载速度的插件。¥
@fastify/throttlePlugin for throttling the download speed of a request. -
@fastify/type-provider-json-schema-to-ts用于 json-schema-to-ts 的 Fastify 类型提供者。¥
@fastify/type-provider-json-schema-to-tsFastify type provider for json-schema-to-ts. -
@fastify/type-provider-typebox用于 Typebox 的 Fastify 类型提供者。¥
@fastify/type-provider-typeboxFastify type provider for Typebox. -
@fastify/under-pressure使用 Fastify 的 "服务不可用" 插件的自动处理来测量进程负载。¥
@fastify/under-pressureMeasure process load with automatic handling of "Service Unavailable" plugin for Fastify. -
@fastify/url-data使用方法装饰Request对象以访问原始 URL 组件。¥
@fastify/url-dataDecorate theRequestobject with a method to access raw URL components. -
@fastify/view模板渲染(ejs、pug、handlebars、marko)插件支持 Fastify。¥
@fastify/viewTemplates rendering (ejs, pug, handlebars, marko) plugin support for Fastify. -
@fastify/vite与 Vite 集成,允许为 SPA/MPA/SSR Vite 应用提供服务。¥
@fastify/viteIntegration with Vite, allows for serving SPA/MPA/SSR Vite applications. -
@fastify/websocketFastify 的 WebSocket 支持。基于 ws 构建。¥
@fastify/websocketWebSocket support for Fastify. Built upon ws. -
@fastify/zipkinZipkin 分布式跟踪系统插件。¥
@fastify/zipkinPlugin for Zipkin distributed tracing system.
社区
ℹ️ 注意:Fastify 社区插件是更广泛社区工作的一部分,我们感谢这些贡献。但是,它们并非由 Fastify 团队维护。请自行决定是否使用它们。如果你发现恶意代码,请 提交问题 或提交 PR 以从列表中移除该插件。
¥ℹ️ Note: Fastify community plugins are part of the broader community efforts, and we are thankful for these contributions. However, they are not maintained by the Fastify team. Use them at your own discretion. If you find malicious code, please open an issue or submit a PR to remove the plugin from the list.
-
@aaroncadillac/crudify-mongo在 fastify 项目中添加 crud 的简单方法。¥
@aaroncadillac/crudify-mongoA simple way to add a crud in your fastify project. -
@applicazza/fastify-nextjs替代 Fastify 和 Next.js 集成。¥
@applicazza/fastify-nextjsAlternate Fastify and Next.js integration. -
@attaryz/fastify-devtoolsFastify 的开发工具插件,具有实时请求仪表板、重放功能和指标跟踪功能。¥
@attaryz/fastify-devtoolsDevelopment tools plugin for Fastify with live request dashboard, replay capabilities, and metrics tracking. -
@blastorg/fastify-aws-dynamodb-cache一个插件可帮助使用 AWS DynamoDB 缓存 API 响应。¥
@blastorg/fastify-aws-dynamodb-cacheA plugin to help with caching API responses using AWS DynamoDB. -
@clerk/fastify使用 Clerk 为你的 Fastify 应用添加身份验证和用户管理。¥
@clerk/fastifyAdd authentication and user management to your Fastify application with Clerk. -
@coobaha/typed-fastify使用从类型生成的 JSON 模式进行运行时验证的强类型路由。¥
@coobaha/typed-fastifyStrongly typed routes with a runtime validation using JSON schema generated from types. -
@dnlup/fastify-doc用于采样过程指标的插件。¥
@dnlup/fastify-docA plugin for sampling process metrics. -
@dnlup/fastify-traps一个插件可在SIGINT和SIGTERM信号上正常关闭服务器。¥
@dnlup/fastify-trapsA plugin to close the server gracefully onSIGINTandSIGTERMsignals. -
@eropple/fastify-openapi3根据你的路由提供简单、开发者友好的 OpenAPI 3.1 规范 + 文档资源管理器。¥
@eropple/fastify-openapi3Provides easy, developer-friendly OpenAPI 3.1 specs + doc explorer based on your routes. -
@ethicdevs/fastify-custom-session插件可让你使用会话并仅决定从哪里加载/保存/到哪里。拥有出色的 TypeScript 支持 + 适用于常见 ORM/数据库(Firebase、Prisma Client、Postgres (wip)、InMemory)的内置适配器,你可以轻松制作自己的适配器!¥
@ethicdevs/fastify-custom-sessionA plugin lets you use session and decide only where to load/save from/to. Has great TypeScript support + built-in adapters for common ORMs/databases (Firebase, Prisma Client, Postgres (wip), InMemory) and you can easily make your own adapter! -
@ethicdevs/fastify-git-server一个插件可轻松创建 git 服务器,并通过标准git(通过 http)命令使一个/多个 Git 存储库可用于克隆/获取/推送。¥
@ethicdevs/fastify-git-serverA plugin to easily create git server and make one/many Git repositories available for clone/fetch/push through the standardgit(over http) commands. -
@exortek/fastify-mongo-sanitize通过清理数据防止 No(n)SQL 注入的 Fastify 插件。¥
@exortek/fastify-mongo-sanitizeA Fastify plugin that protects against No(n)SQL injection by sanitizing data. -
@exortek/remix-fastifyRemix 的 Fastify 插件。¥
@exortek/remix-fastifyFastify plugin for Remix. -
@fastify-userland/request-idFastify 请求 ID 插件¥
@fastify-userland/request-idFastify Request ID Plugin -
@fastify-userland/typeorm-query-runnerFastify typeorm QueryRunner 插件¥
@fastify-userland/typeorm-query-runnerFastify typeorm QueryRunner plugin -
@gquittet/graceful-serverTiny (~5k)、Fast、KISS 和无依赖的 Node.js 库使你的 Fastify API 更加优雅。¥
@gquittet/graceful-serverTiny (~5k), Fast, KISS, and dependency-free Node.js library to make your Fastify API graceful. -
@h4ad/serverless-adapter使用你现有的 Node.js 应用框架(Express、Koa、Hapi 和 Fastify),在 AWS Lambda、华为和许多其他云上运行 REST API 和其他 Web 应用。¥
@h4ad/serverless-adapterRun REST APIs and other web applications using your existing Node.js application framework (Express, Koa, Hapi and Fastify), on top of AWS Lambda, Huawei and many other clouds. -
@hey-api/openapi-tsTypeScript 代码生成器的 OpenAPI。生成客户端、SDK、验证器等。¥
@hey-api/openapi-tsThe OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more. -
@immobiliarelabs/fastify-metrics收集使用情况/流程指标并分派到 statsd 的简约而有主见的插件。¥
@immobiliarelabs/fastify-metricsMinimalistic and opinionated plugin that collects usage/process metrics and dispatches to statsd. -
@inaiat/fastify-papr一个将 Papr(用于 TypeScript 和 MongoDB 的 MongoDB ORM)与 Fastify 集成的插件。¥
@inaiat/fastify-paprA plugin to integrate Papr, the MongoDB ORM for TypeScript & MongoDB, with Fastify. -
@jerome1337/fastify-enforce-routes-pattern一个 Fastify 插件,强制使用路由路径的命名模式。¥
@jerome1337/fastify-enforce-routes-patternA Fastify plugin that enforces naming pattern for routes path. -
@joggr/fastify-prisma用于访问服务器上实例化的 PrismaClient 的插件。¥
@joggr/fastify-prismaA plugin for accessing an instantiated PrismaClient on your server. -
@mgcrea/fastify-graceful-exit一个插件可正常关闭服务器¥
@mgcrea/fastify-graceful-exitA plugin to close the server gracefully -
@mgcrea/fastify-request-logger一个插件可为 Fastify 启用紧凑请求日志记录¥
@mgcrea/fastify-request-loggerA plugin to enable compact request logging for Fastify -
@mgcrea/fastify-session支持无状态和有状态会话的 Fastify 会话插件¥
@mgcrea/fastify-sessionSession plugin for Fastify that supports both stateless and stateful sessions -
@mgcrea/fastify-session-redis-store使用 ioredis 为 @mgcrea/fastify-session 存储 Redis¥
@mgcrea/fastify-session-redis-storeRedis store for @mgcrea/fastify-session using ioredis -
@mgcrea/fastify-session-sodium-crypto用于@mgcrea/fastify-session 的快速钠基加密¥
@mgcrea/fastify-session-sodium-cryptoFast sodium-based crypto for @mgcrea/fastify-session -
@mgcrea/pino-pretty-compact自定义紧凑型 pino-base 美化器¥
@mgcrea/pino-pretty-compactA custom compact pino-base prettifier -
@pybot/fastify-autoload插件可自动生成具有有效 json 内容的路由¥
@pybot/fastify-autoloadPlugin to generate routes automatically with valid json content -
@scalar/fastify-api-referenceFastify 的精美 OpenAPI/Swagger API 参考¥
@scalar/fastify-api-referenceBeautiful OpenAPI/Swagger API references for Fastify -
@trubavuong/fastify-seaweedfsSeaweedFS for Fastify -
apitallyFastify 插件用于与 Apitally(一种 API 分析、日志记录和监控工具)集成。¥
apitallyFastify plugin to integrate with Apitally, an API analytics, logging and monitoring tool. -
arecibo用于 Kubernetes Liveness 和 Readiness Probes 的 Fastify ping 响应器。¥
areciboFastify ping responder for Kubernetes Liveness and Readiness Probes. -
aws-xray-sdk-fastifyFastify 插件通过 AWSXray 记录请求和子段。¥
aws-xray-sdk-fastifyA Fastify plugin to log requests and subsegments through AWSXray. -
cls-rtracer用于基于 CLS 的请求 ID 生成的 Fastify 中间件。用于将请求 ID 添加到日志中的开箱即用的解决方案。¥
cls-rtracerFastify middleware for CLS-based request ID generation. An out-of-the-box solution for adding request IDs into your logs. -
electron-server无需在 Electron 应用上使用端口即可使用 Fastify 的插件。¥
electron-serverA plugin for using Fastify without the need of consuming a port on Electron apps. -
fast-water用于水线的 Fastify 插件。用水线模型装饰 Fastify。¥
fast-waterA Fastify plugin for waterline. Decorates Fastify with waterline models. -
fastify-204Fastify 插件在空响应时返回 204 状态。¥
fastify-204Fastify plugin that return 204 status on empty response. -
fastify-405Fastify 插件为你的路由添加 405 HTTP 状态¥
fastify-405Fastify plugin that adds 405 HTTP status to your routes -
fastify-allowFastify 插件自动向带有路由的响应添加允许标头。还为具有处理程序但不针对请求方法的路由发送 405 响应。¥
fastify-allowFastify plugin that automatically adds an Allow header to responses with routes. Also sends 405 responses for routes that have a handler but not for the request's method. -
fastify-amqpFastify AMQP 连接插件,用于 RabbitMQ 或其他连接器。只是amqplib的封装器。¥
fastify-amqpFastify AMQP connection plugin, to use with RabbitMQ or another connector. Just a wrapper toamqplib. -
fastify-amqp-asyncFastify AMQP 插件,带有amqplib-as-promised提供的基于 Promise 的 API。¥
fastify-amqp-asyncFastify AMQP plugin with a Promise-based API provided byamqplib-as-promised. -
fastify-angular-universal使用@angular/platform-server为 Fastify 提供 Angular 服务器端渲染支持¥
fastify-angular-universalAngular server-side rendering support using@angular/platform-serverfor Fastify -
fastify-api-keyFastify 插件根据 API 密钥和签名对 HTTP 请求进行身份验证¥
fastify-api-keyFastify plugin to authenticate HTTP requests based on API key and signature -
fastify-appwriteFastify 插件用于与 Appwrite 服务器交互。¥
fastify-appwriteFastify Plugin for interacting with Appwrite server. -
fastify-asyncforge用于从 Node.js 异步本地存储 访问 Fastify 实例、日志器、请求和回复的插件。¥
fastify-asyncforgePlugin to access Fastify instance, logger, request and reply from Node.js Async Local Storage. -
fastify-at-mysqlFastify MySQL 插件具有自动 SQL 注入攻击预防功能。¥
fastify-at-mysqlFastify MySQL plugin with auto SQL injection attack prevention. -
fastify-at-postgresFastify Postgres 插件具有自动 SQL 注入攻击预防功能。¥
fastify-at-postgresFastify Postgres plugin with auto SQL injection attack prevention. -
fastify-auth0-verify:Fastify 的 Auth0 验证插件,内部使用 fastify-jwt 和 jsonwebtoken。¥
fastify-auth0-verify: Auth0 verification plugin for Fastify, internally uses fastify-jwt and jsonwebtoken. -
fastify-autocrud用于尽快自动生成 CRUD 路由的插件。¥
fastify-autocrudPlugin to auto-generate CRUD routes as fast as possible. -
fastify-autoroutes插件根据自定义目录的文件系统路径扫描和加载路由。¥
fastify-autoroutesPlugin to scan and load routes based on filesystem path from a custom directory. -
fastify-aws-sns用于 AWS 简单通知服务 (AWS SNS) 的 Fastify 插件,用于协调和管理向订阅端点或客户端传递或发送消息。¥
fastify-aws-snsFastify plugin for AWS Simple Notification Service (AWS SNS) that coordinates and manages the delivery or sending of messages to subscribing endpoints or clients. -
fastify-aws-timestream用于管理数据库、表以及使用 AWS Timestream 查询和创建计划查询的 Fastify 插件。¥
fastify-aws-timestreamFastify plugin for managing databases, tables, and querying and creating scheduled queries with AWS Timestream. -
fastify-axios插件通过 axios 发送 HTTP 请求。¥
fastify-axiosPlugin to send HTTP requests via axios. -
fastify-babel用于需要 Babel 转换 JavaScript 源的开发服务器的 Fastify 插件。¥
fastify-babelFastify plugin for development servers that require Babel transformations of JavaScript sources. -
fastify-bcryptBcrypt 哈希生成器和检查器。¥
fastify-bcryptA Bcrypt hash generator & checker. -
fastify-better-sqlite3better-sqlite3 插件。¥
fastify-better-sqlite3Plugin for better-sqlite3. -
fastify-blipp将你的路由打印到控制台,因此你肯定知道哪些端点可用。¥
fastify-blippPrints your routes to the console, so you definitely know which endpoints are available. -
fastify-bookshelfFastify 插件添加 bookshelf.js ORM 支持。¥
fastify-bookshelfFastify plugin to add bookshelf.js ORM support. -
fastify-boomFastify 插件添加 boom 支持。¥
fastify-boomFastify plugin to add boom support. -
fastify-breeFastify 插件添加 bree 支持。¥
fastify-breeFastify plugin to add bree support. -
fastify-bugsnagFastify 插件添加对 Bugsnag 错误报告的支持。¥
fastify-bugsnagFastify plugin to add support for Bugsnag error reporting. -
fastify-cacheman用于 Fastify 的 Node.js 的小型高效缓存提供程序,具有内存、文件、Redis 和 MongoDB 引擎¥
fastify-cachemanSmall and efficient cache provider for Node.js with In-memory, File, Redis and MongoDB engines for Fastify -
fastify-casbinCasbin 支持 Fastify。¥
fastify-casbinCasbin support for Fastify. -
fastify-casbin-restCasbin 基于 RESTful 模型支持 Fastify。¥
fastify-casbin-restCasbin support for Fastify based on a RESTful model. -
fastify-caslFastify CASL 插件通过 preSerialization 和 preHandler 钩子支持类似 ACL 的端点保护,根据用户权限清理应用的输入和输出。¥
fastify-caslFastify CASL plugin that supports ACL-like protection of endpoints via either a preSerialization & preHandler hook, sanitizing the inputs and outputs of your application based on user rights. -
fastify-cloudeventsFastify 插件以 Cloudevents 格式生成和转发 Fastify 事件。¥
fastify-cloudeventsFastify plugin to generate and forward Fastify events in the Cloudevents format. -
fastify-cloudflare-turnstile用于 CloudFlare Turnstile 的 Fastify 插件。¥
fastify-cloudflare-turnstileFastify plugin for CloudFlare Turnstile. -
fastify-cloudinary插件在 Fastify 上共享通用 Cloudinary 连接。¥
fastify-cloudinaryPlugin to share a common Cloudinary connection across Fastify. -
fastify-cockroachdbFastify 插件通过 Sequelize ORM 连接到 CockroachDB PostgreSQL 实例。¥
fastify-cockroachdbFastify plugin to connect to a CockroachDB PostgreSQL instance via the Sequelize ORM. -
fastify-constraintsFastify 插件为多个路由添加约束¥
fastify-constraintsFastify plugin to add constraints to multiple routes -
fastify-couchdbFastify 插件通过 nano 添加 CouchDB 支持。¥
fastify-couchdbFastify plugin to add CouchDB support via nano. -
fastify-crud-generator一个插件可为任何实体快速生成 CRUD 路由。¥
fastify-crud-generatorA plugin to rapidly generate CRUD routes for any entity. -
fastify-custom-healthcheckFastify 插件在服务器中添加健康路由以声明自定义函数。¥
fastify-custom-healthcheckFastify plugin to add health route in your server that asserts custom functions. -
fastify-decoratorsFastify 插件提供一组 TypeScript 装饰器。¥
fastify-decoratorsFastify plugin that provides the set of TypeScript decorators. -
fastify-delay-requestFastify 插件允许在运行响应所依赖的任务(例如资源密集型进程)时延迟请求。¥
fastify-delay-requestFastify plugin that allows requests to be delayed whilst a task the response is dependent on is run, such as a resource intensive process. -
fastify-disablecacheFastify 插件禁用客户端缓存,灵感来自 nocache。¥
fastify-disablecacheFastify plugin to disable client-side caching, inspired by nocache. -
Fastify 的
fastify-dynamodbAWS DynamoDB 插件。它公开 AWS.DynamoDB.DocumentClient() 对象。¥
fastify-dynamodbAWS DynamoDB plugin for Fastify. It exposes AWS.DynamoDB.DocumentClient() object. -
fastify-dynaregFastify 的动态插件注册。¥
fastify-dynaregDynamic plugin register for Fastify. -
fastify-envalidFastify 插件将 envalid 集成到你的 Fastify 项目中。¥
fastify-envalidFastify plugin to integrate envalid in your Fastify project. -
fastify-error-pageFastify 插件将结构化 HTML 中的错误打印到浏览器。¥
fastify-error-pageFastify plugin to print errors in structured HTML to the browser. -
fastify-essoFastify 最简单的身份验证插件,内置对单点登录的支持(以及出色的文档)。¥
fastify-essoThe easiest authentication plugin for Fastify, with built-in support for Single sign-on (and great documentation). -
fastify-event-busFastify 的事件总线支持。基于 js-event-bus 构建。¥
fastify-event-busEvent bus support for Fastify. Built upon js-event-bus. -
fastify-evervault用于实例化和封装 Evervault 客户端的 Fastify 插件。¥
fastify-evervaultFastify plugin for instantiating and encapsulating the Evervault client. -
fastify-explorer在所有封装上下文中控制你的装饰器。¥
fastify-explorerGet control of your decorators across all the encapsulated contexts. -
fastify-faviconFastify 插件用于提供默认图标。¥
fastify-faviconFastify plugin to serve default favicon. -
fastify-feature-flagsFastify 功能标记插件具有多个提供程序支持(例如 env、config、unleash)。¥
fastify-feature-flagsFastify feature flags plugin with multiple providers support (e.g. env, config, unleash). -
fastify-file-routes将基于 Next.js 的文件系统路由到 fastify。¥
fastify-file-routesGet Next.js based file system routing into fastify. -
fastify-file-uploadFastify 插件用于上传文件。¥
fastify-file-uploadFastify plugin for uploading files. -
fastify-firebase用于 Firebase 管理 SDK 的 Fastify 插件到 Fastify,以便你可以轻松使用 Firebase Auth、Firestore、云存储、云消息传递等。¥
fastify-firebaseFastify plugin for Firebase Admin SDK to Fastify so you can easily use Firebase Auth, Firestore, Cloud Storage, Cloud Messaging, and more. -
fastify-firebase-authFirebase Authentication for Fastify 支持与身份验证 API 相关的所有方法。¥
fastify-firebase-authFirebase Authentication for Fastify supporting all of the methods relating to the authentication API. -
fastify-formidable方便的插件,提供多部分支持和 fastify-swagger 集成。¥
fastify-formidableHandy plugin to provide multipart support and fastify-swagger integration. -
fastify-gcloud-trace谷歌云跟踪 API Fastify 连接器。¥
fastify-gcloud-traceGoogle Cloud Trace API Connector for Fastify. -
fastify-get-head小插件用于为先前在 Fastify 中注册的每个 GET 路由设置一个新的 HEAD 路由处理程序。¥
fastify-get-headSmall plugin to set a new HEAD route handler for each GET route previously registered in Fastify. -
fastify-get-only用于使 fastify 仅接受 GET 请求的小插件¥
fastify-get-onlySmall plugin used to make fastify accept only GET requests -
fastify-good-sessions一个专注于速度的优秀 Fastify 会话插件。¥
fastify-good-sessionsA good Fastify sessions plugin focused on speed. -
fastify-google-cloud-storageFastify 插件公开 GCP 云存储客户端实例。¥
fastify-google-cloud-storageFastify plugin that exposes a GCP Cloud Storage client instance. -
fastify-graceful-shutdown正常且异步地关闭 Fastify。¥
fastify-graceful-shutdownShutdown Fastify gracefully and asynchronously. -
fastify-grantFastify 的身份验证/授权插件,支持 200 多个 OAuth 提供商。¥
fastify-grantAuthentication/Authorization plugin for Fastify that supports 200+ OAuth Providers. -
fastify-guard通过检查经过身份验证的用户角色和/或范围来保护端点的 Fastify 插件。¥
fastify-guardA Fastify plugin that protects endpoints by checking authenticated user roles and/or scopes. -
fastify-hana将你的应用连接到SAP-HANA。¥
fastify-hanaconnects your application toSAP-HANA. -
fastify-hashidsFastify 插件使用 hashids 对 ID 进行编码/解码。¥
fastify-hashidsA Fastify plugin to encode/decode IDs using hashids. -
fastify-hasuraFastify 插件可让你尽情享受 Hasura 带来的 乐趣。¥
fastify-hasuraA Fastify plugin to have fun with Hasura. -
fastify-healthcheckFastify 插件用于提供健康检查路由和探测脚本。¥
fastify-healthcheckFastify plugin to serve a health check route and a probe script. -
fastify-hemeraFastify Hemera 插件,用于使用 nats.io 编写可靠且容错的微服务。¥
fastify-hemeraFastify Hemera plugin, for writing reliable & fault-tolerant microservices with nats.io. -
fastify-hl7用于创建服务器、构建和发送 HL7 格式的 Hl7 消息的 Fastify 插件。使用 node-hl7-client 和 node-hl7-server 作为底层技术来执行此操作。¥
fastify-hl7A Fastify Plugin to create a server, build, and send HL7 formatted Hl7 messages. Using node-hl7-client and node-hl7-server as the underlining technology to do this. -
fastify-http-client插件发送 HTTP(s) 请求。基于 urllib 构建。¥
fastify-http-clientPlugin to send HTTP(s) requests. Built upon urllib. -
fastify-http-context用于 "simulating" 的 Fastify 插件,一个执行线程,允许在 Fastify 调用生命周期内每个 API 调用都发生真正的 HTTP 上下文。¥
fastify-http-contextFastify plugin for "simulating" a thread of execution to allow for true HTTP context to take place per API call within the Fastify lifecycle of calls. -
fastify-http-errors-enhanced使用增强的 HTTP 错误的 Fastify 错误处理插件。¥
fastify-http-errors-enhancedAn error handling plugin for Fastify that uses enhanced HTTP errors. -
fastify-http2https将 HTTP 请求重定向到 HTTPS,两者都使用相同的端口号,或者在 HTTP 和 HTTPS 上使用不同的响应。¥
fastify-http2httpsRedirect HTTP requests to HTTPS, both using the same port number, or different response on HTTP and HTTPS. -
fastify-https-always轻量级、代理感知重定向插件,从 HTTP 到 HTTPS。¥
fastify-https-alwaysLightweight, proxy-aware redirect plugin from HTTP to HTTPS. -
fastify-https-redirect用于从 HTTP 自动重定向到 HTTPS 的 Fastify 插件。¥
fastify-https-redirectFastify plugin for auto-redirect from HTTP to HTTPS. -
fastify-i18nFastify 的国际化插件。基于 node-polyglot 构建。¥
fastify-i18nInternationalization plugin for Fastify. Built upon node-polyglot. -
fastify-impressionsFastify 插件用于跟踪所有路由的印象。¥
fastify-impressionsFastify plugin to track impressions of all the routes. -
fastify-influxdbFastify InfluxDB 插件通过 Influx 默认包连接到 InfluxDB 实例。¥
fastify-influxdbFastify InfluxDB plugin connecting to an InfluxDB instance via the Influx default package. -
fastify-ipFastify 的插件,允许你通过给定的一组自定义请求标头推断请求 ID。¥
fastify-ipA plugin for Fastify that allows you to infer a request ID by a given set of custom Request headers. -
fastify-json-to-xmlFastify 插件将 JSON 响应序列化为 XML。¥
fastify-json-to-xmlFastify plugin to serialize JSON responses into XML. -
fastify-jwt-authzJWT 用户范围验证器。¥
fastify-jwt-authzJWT user scope verifier. -
基于 Fastify 的 Web 应用的
fastify-jwt-webappJWT 身份验证。¥
fastify-jwt-webappJWT authentication for Fastify-based web apps. -
fastify-kafkajsFastify 插件添加对 KafkaJS 的支持 - 现代 Apache Kafka 客户端库。¥
fastify-kafkajsFastify plugin that adds support for KafkaJS - a modern Apache Kafka client library. -
fastify-keycloak-adapterFastify 应用的 keycloak 适配器。¥
fastify-keycloak-adapterA keycloak adapter for a Fastify app. -
fastify-knexjsFastify 插件用于支持 KnexJS 查询构建器。¥
fastify-knexjsFastify plugin for supporting KnexJS Query Builder. -
fastify-knexjs-mockFastify Mock KnexJS 用于测试支持。¥
fastify-knexjs-mockFastify Mock KnexJS for testing support. -
fastify-koa将 Koa 中间件转换为 Fastify 插件¥
fastify-koaConvert Koa middlewares into Fastify plugins -
fastify-kubernetesFastify Kubernetes 客户端插件。¥
fastify-kubernetesFastify Kubernetes client plugin. -
fastify-kysely用于支持 Kysely 类型安全查询构建器的 Fastify 插件。¥
fastify-kyselyFastify plugin for supporting Kysely type-safe query builder. -
fastify-language-parserFastify 插件用于解析请求语言。¥
fastify-language-parserFastify plugin to parse request language. -
fastify-lcache轻量级缓存插件¥
fastify-lcacheLightweight cache plugin -
fastify-list-routesFastify 的简单插件,用于列出所有可用路由。¥
fastify-list-routesA simple plugin for Fastify to list all available routes. -
fastify-lm将 OpenAI、Claude、Google、Deepseek 和其他语言模型与一个 Fastify 插件一起使用。¥
fastify-lmUse OpenAI, Claude, Google, Deepseek, and others LMs with one Fastify plugin. -
fastify-loader从目录加载路由并在每个文件中注入 Fastify 实例。¥
fastify-loaderLoad routes from a directory and inject the Fastify instance in each file. -
fastify-log-controller在运行时更改 Fastify 服务器的日志级别。¥
fastify-log-controllerchanges the log level of your Fastify server at runtime. -
fastify-lured插件使用 fastify-redis 和 lured 加载 lua 脚本。一个插件可在 Fastify 上实现 Lyra 搜索引擎。¥
fastify-luredPlugin to load lua scripts with fastify-redis and lured. A plugin to implement Lyra search engine on Fastify. -
fastify-mailer用于在 Fastify 中初始化和封装 Nodemailer 的传输器实例的插件。¥
fastify-mailerPlugin to initialize and encapsulate Nodemailer's transporters instances in Fastify. -
fastify-markdownmarkdown 支持插件。¥
fastify-markdownPlugin to markdown support. -
fastify-method-overrideFastify 插件,允许使用 HTTP 动词,例如 DELETE、PATCH、HEAD、PUT、OPTIONS,以防客户端不支持它们。¥
fastify-method-overridePlugin for Fastify, which allows the use of HTTP verbs, such as DELETE, PATCH, HEAD, PUT, OPTIONS in case the client doesn't support them. -
fastify-metrics用于导出 Prometheus 指标的插件。¥
fastify-metricsPlugin for exporting Prometheus metrics. -
fastify-minify用于缩小和转换响应的插件。¥
fastify-minifyPlugin for minification and transformation of responses. -
fastify-mongo-memoryFastify MongoDB in Memory 插件用于测试支持。¥
fastify-mongo-memoryFastify MongoDB in Memory Plugin for testing support. -
fastify-mongodb-sanitizerFastify 插件清理客户端输入以防止潜在的 MongoDB 查询注入攻击。¥
fastify-mongodb-sanitizerFastify plugin that sanitizes client input to prevent potential MongoDB query injection attacks. -
fastify-mongoose-apiFastify 插件基于 Mongoose MongoDB 模型创建 REST API 方法。¥
fastify-mongoose-apiFastify plugin to create REST API methods based on Mongoose MongoDB models. -
fastify-mongoose-driverFastify Mongoose 插件通过 Mongoose 插件连接到 MongoDB,支持模型。¥
fastify-mongoose-driverFastify Mongoose plugin that connects to a MongoDB via the Mongoose plugin with support for Models. -
fastify-mqtt插件在 Fastify 上共享 mqtt 客户端。¥
fastify-mqttPlugin to share mqtt client across Fastify. -
fastify-msgpackFastify 和 MessagePack 终于在一起了。默认使用@msgpack/msgpack。¥
fastify-msgpackFastify and MessagePack, together at last. Uses @msgpack/msgpack by default. -
fastify-msgraph-webhook管理 MS Graph 更改通知 webhook。¥
fastify-msgraph-webhookto manage MS Graph Change Notifications webhooks. -
fastify-multerMulter 是一个用于处理 multipart/form-data 的插件,主要用于上传文件。¥
fastify-multerMulter is a plugin for handling multipart/form-data, which is primarily used for uploading files. -
fastify-multilingual使用 Polyglot.js 低调地修饰 fastify 请求以实现国际化。¥
fastify-multilingualUnobtrusively decorates fastify request with Polyglot.js for i18n. -
fastify-nats插件在 Fastify 上共享 NATS 客户端。¥
fastify-natsPlugin to share NATS client across Fastify. -
fastify-next-authFastify 的 NextAuth.js 插件。¥
fastify-next-authNextAuth.js plugin for Fastify. -
fastify-no-additional-properties默认将additionalProperties: false添加到你的 JSON 模式中。¥
fastify-no-additional-propertiesAddadditionalProperties: falseby default to your JSON Schemas. -
fastify-no-icon用于消除/favicon.ico请求抛出的错误的插件。¥
fastify-no-iconPlugin to eliminate thrown errors for/favicon.icorequests. -
fastify-normalize-request-reply插件规范化请求并回复 Express 版本 4.x 请求和响应,允许使用最初为 Express 编写的中间件,如 swagger-stats。¥
fastify-normalize-request-replyPlugin to normalize the request and reply to the Express version 4.x request and response, which allows use of middleware, like swagger-stats, that was originally written for Express. -
fastify-now在文件夹中构建你的端点并使用 Fastify 动态加载它们。¥
fastify-nowStructure your endpoints in a folder and load them dynamically with Fastify. -
fastify-nuxtjs使用 Nuxt.js 框架的 Vue 服务器端渲染支持 Fastify。¥
fastify-nuxtjsVue server-side rendering support for Fastify with Nuxt.js Framework. -
fastify-oas从 Fastify 的路由模式生成 OpenAPI 3.0+ 文档。¥
fastify-oasGenerates OpenAPI 3.0+ documentation from routes schemas for Fastify. -
fastify-objectionjs用于提供与 objectionjs ORM 集成的 Fastify 框架的插件。¥
fastify-objectionjsPlugin for the Fastify framework that provides integration with objectionjs ORM. -
fastify-objectionjs-classes用于从 objectionjs ORM 中挑选类的插件。¥
fastify-objectionjs-classesPlugin to cherry-pick classes from objectionjs ORM. -
fastify-opaque-apakeFastify 插件可实现 OPAQUE aPAKE 协议。使用 @squirrelchat/opaque-wasm-server。¥
fastify-opaque-apakeA Fastify plugin to implement the OPAQUE aPAKE protocol. Uses @squirrelchat/opaque-wasm-server. -
fastify-openapi-docs自动生成 OpenAPI 规范的 Fastify 插件。¥
fastify-openapi-docsA Fastify plugin that generates OpenAPI spec automatically. -
fastify-openapi-glueFastify 中的 OpenAPI 规范 Glue 可根据 OpenAPI 规范自动生成路由。¥
fastify-openapi-glueGlue for OpenAPI specifications in Fastify, autogenerates routes based on an OpenAPI Specification. -
fastify-opentelemetryFastify 插件使用 开放遥测 API 提供请求跟踪。¥
fastify-opentelemetryA Fastify plugin that uses the OpenTelemetry API to provide request tracing. -
fastify-oracle将oracledb连接池附加到 Fastify 服务器实例。¥
fastify-oracleAttaches anoracledbconnection pool to a Fastify server instance. -
fastify-orientdbFastify OrientDB 连接插件,你可以使用它在服务器的每个部分共享 OrientDB 连接。¥
fastify-orientdbFastify OrientDB connection plugin, with which you can share the OrientDB connection across every part of your server. -
fastify-osmFastify OSM 插件用于运行 OpenStreetMap 的立交桥查询。¥
fastify-osmFastify OSM plugin to run overpass queries by OpenStreetMap. -
fastify-overrideFastify 插件用于覆盖装饰器、插件和钩子以进行测试¥
fastify-overrideFastify plugin to override decorators, plugins and hooks for testing purposes -
fastify-passkit-webservice一组 Fastify 插件用于集成 Apple Wallet Web Service 规范¥
fastify-passkit-webserviceA set of Fastify plugins to integrate Apple Wallet Web Service specification -
fastify-peekabooFastify 插件通过表达性设置记忆响应。¥
fastify-peekabooFastify plugin for memoize responses by expressive settings. -
fastify-permissionsFastify 的路由级权限中间件支持自定义权限检查。¥
fastify-permissionsRoute-level permission middleware for Fastify supports custom permission checks. -
fastify-piscina使用 Piscina 的工作线程池插件。¥
fastify-piscinaA worker thread pool plugin using Piscina. -
fastify-polyglot一个插件可使用 node-polyglot 处理 i18n。¥
fastify-polyglotA plugin to handle i18n using node-polyglot. -
fastify-postgraphile插件将 PostGraphile 集成到 Fastify 项目中。¥
fastify-postgraphilePlugin to integrate PostGraphile in a Fastify project. -
fastify-postgres-dot-js使用 Postgres.js 的 Fastify PostgreSQL 连接插件。¥
fastify-postgres-dot-jsFastify PostgreSQL connection plugin that uses Postgres.js. -
fastify-prettierFastify 插件在底层使用 prettier 来美化 Fastify 服务器中的传出响应和/或其他内容。¥
fastify-prettierA Fastify plugin that uses prettier under the hood to beautify outgoing responses and/or other things in the Fastify server. -
fastify-print-routes打印所有可用路由的 Fastify 插件。¥
fastify-print-routesA Fastify plugin that prints all available routes. -
fastify-protobufjsFastify 和 protobufjs 终于在一起了。默认使用 protobufjs。¥
fastify-protobufjsFastify and protobufjs, together at last. Uses protobufjs by default. -
fastify-qrcode此插件利用 qrcode 生成二维码。¥
fastify-qrcodeThis plugin utilizes qrcode to generate QR Code. -
fastify-qsFastify 的插件,增加了使用 qs 解析 URL 查询参数的支持。¥
fastify-qsA plugin for Fastify that adds support for parsing URL query parameters with qs. -
fastify-rabbitmqFastify RabbitMQ 插件使用 node-rabbitmq-client 插件作为封装器。¥
fastify-rabbitmqFastify RabbitMQ plugin that uses node-rabbitmq-client plugin as a wrapper. -
fastify-racingFastify 的插件增加了对异步处理中止请求的支持。¥
fastify-racingFastify's plugin that adds support to handle an aborted request asynchronous. -
fastify-ravendbRavenDB 连接插件。它在整个 Fastify 应用中公开相同的DocumentStore(或多个)。¥
fastify-ravendbRavenDB connection plugin. It exposes the sameDocumentStore(or multiple ones) across the whole Fastify application. -
fastify-raw-body添加request.rawBody字段。¥
fastify-raw-bodyAdd therequest.rawBodyfield. -
fastify-rbacFastify 基于角色的访问控制插件。¥
fastify-rbacFastify role-based access control plugin. -
fastify-recaptchaFastify 插件用于 reCAPTCHA 验证。¥
fastify-recaptchaFastify plugin for reCAPTCHA verification. -
fastify-redis-channels基于 Redis 流的快速、可靠和可扩展通道实现插件。¥
fastify-redis-channelsA plugin for fast, reliable, and scalable channels implementation based on Redis streams. -
fastify-redis-sessionfastify 的 Redis 会话插件。¥
fastify-redis-sessionRedis Session plugin for fastify. -
fastify-register-routes用于自动从指定路径加载路由的插件,并可选择通过正则表达式限制加载的文件名。¥
fastify-register-routesPlugin to automatically load routes from a specified path and optionally limit loaded file names by a regular expression. -
fastify-response-caching用于缓存响应的 Fastify 插件。¥
fastify-response-cachingA Fastify plugin for caching the response. -
fastify-response-time在 Fastify 的每个请求中添加X-Response-Time标头,以毫秒为单位。¥
fastify-response-timeAddX-Response-Timeheader at each request for Fastify, in milliseconds. -
fastify-resty基于 Fastify 的 Web 框架,使用 DI 和装饰器为 TypeORM 实体自动生成 REST API 路由。¥
fastify-restyFastify-based web framework with REST API routes auto-generation for TypeORM entities using DI and decorators. -
fastify-reverse-routesFastify 反向路由插件,允许定义命名路由并使用名称和参数构建路径。¥
fastify-reverse-routesFastify reverse routes plugin, allows to defined named routes and build path using name and parameters. -
fastify-rob-configFastify Rob-Config 集成。¥
fastify-rob-configFastify Rob-Config integration. -
fastify-route-group方便的路由分组和继承。¥
fastify-route-groupConvenient grouping and inheritance of routes. -
fastify-route-preset一个 Fastify 插件,可让你创建可应用于多个路由的路由配置。¥
fastify-route-presetA Fastify plugin that enables you to create route configurations that can be applied to multiple routes. -
fastify-s3-buckets确保在应用启动时存在定义的 S3 存储桶。¥
fastify-s3-bucketsEnsure the existence of defined S3 buckets on the application startup. -
fastify-schema-constraint根据请求参数选择要使用的 JSON 模式。¥
fastify-schema-constraintChoose the JSON schema to use based on request parameters. -
fastify-schema-to-typescript根据你的 JSON/YAML 验证模式生成 typescript 类型,以便它们始终保持同步。¥
fastify-schema-to-typescriptGenerate typescript types based on your JSON/YAML validation schemas so they are always in sync. -
fastify-sentryFastify 插件将 Sentry SDK 错误处理程序添加到请求中。¥
fastify-sentryFastify plugin to add the Sentry SDK error handler to requests. -
fastify-sequelizeFastify 插件与 Sequelize 配合使用(Node.js -> Sqlite、Mysql、Mssql、Postgres 的适配器)。¥
fastify-sequelizeFastify plugin work with Sequelize (adapter for Node.js -> Sqlite, Mysql, Mssql, Postgres). -
fastify-server-session通过fastify-caching支持任意后备缓存的会话插件。¥
fastify-server-sessionA session plugin with support for arbitrary backing caches viafastify-caching. -
fastify-shared-schema用于在不同路由之间共享模式的插件。¥
fastify-shared-schemaPlugin for sharing schemas between different routes. -
fastify-slonikFastify Slonik 插件,使用它你可以在服务器的每个部分使用 slonik。¥
fastify-slonikFastify Slonik plugin, with this you can use slonik in every part of your server. -
fastify-slow-down一个插件可延迟服务器的响应。¥
fastify-slow-downA plugin to delay the response from the server. -
fastify-socket.io是 Fastify 的 Socket.io 插件。¥
fastify-socket.ioa Socket.io plugin for Fastify. -
fastify-split-validator小插件允许你根据请求的每个 HTTP 部分在一个路由中使用多个验证器。¥
fastify-split-validatorSmall plugin to allow you use multiple validators in one route based on each HTTP part of the request. -
fastify-sqlite将你的应用连接到 sqlite3 数据库。¥
fastify-sqliteconnects your application to a sqlite3 database. -
fastify-sqlite-typed将你的应用连接到具有完整 Typescript 支持的 SQLite 数据库。¥
fastify-sqlite-typedconnects your application to a SQLite database with full Typescript support. -
fastify-sse使用reply.sse( … )向 Fastify 提供服务器发送事件。¥
fastify-sseto provide Server-Sent Events withreply.sse( … )to Fastify. -
fastify-sse-v2使用异步迭代器提供服务器发送事件(支持较新版本的 Fastify)。¥
fastify-sse-v2to provide Server-Sent Events using Async Iterators (supports newer versions of Fastify). -
fastify-ssr-vite使用 vite 设置服务器端渲 染的简单插件。¥
fastify-ssr-viteA simple plugin for setting up server side rendering with vite. -
fastify-stripe用于在 Fastify 中初始化和封装 条纹 Node.js 实例的插件。¥
fastify-stripePlugin to initialize and encapsulate Stripe Node.js instances in Fastify. -
fastify-supabase用于在 Fastify 中初始化和封装 Supabase 实例的插件。¥
fastify-supabasePlugin to initialize and encapsulate Supabase instances in Fastify. -
fastify-tls-keygen自动生成与浏览器兼容、受信任、自签名、仅限本地主机的 TLS 证书。¥
fastify-tls-keygenAutomatically generate a browser-compatible, trusted, self-signed, localhost-only, TLS certificate. -
Fastify 的
fastify-tokenizeTokenize 插件消除了管理身份验证令牌的麻烦,并内置了fastify-auth集成。¥
fastify-tokenizeTokenize plugin for Fastify that removes the pain of managing authentication tokens, with built-in integration forfastify-auth. -
fastify-totp一个插件可处理 TOTP(例如用于 2FA)。¥
fastify-totpA plugin to handle TOTP (e.g. for 2FA). -
fastify-twitch-ebs-toolsTwitch 扩展后端服务 (EBS) 的有用函数。¥
fastify-twitch-ebs-toolsUseful functions for Twitch Extension Backend Services (EBS). -
fastify-type-provider-effect-schema用于 @effect/schema 的 Fastify 类型提供者。¥
fastify-type-provider-effect-schemaFastify type provider for @effect/schema. -
fastify-type-provider-zod用于 zod 的 Fastify 类型提供者。¥
fastify-type-provider-zodFastify type provider for zod. -
fastify-typeorm-pluginFastify 插件与 TypeORM 配合使用。¥
fastify-typeorm-pluginFastify plugin to work with TypeORM. -
fastify-user-agent解析请求的user-agent标头。¥
fastify-user-agentparses your request'suser-agentheader. -
fastify-uwsFastify 插件使用 Web 服务器 uWebSockets.js。¥
fastify-uwsA Fastify plugin to use the web server uWebSockets.js. -
fastify-vhost将子域 HTTP 请求代理到另一台服务器(如果你想将多个子域指向同一个 IP 地址,同时在同一台机器上运行不同的服务器,这很有用)。¥
fastify-vhostProxy subdomain HTTP requests to another server (useful if you want to point multiple subdomains to the same IP address, while running different servers on the same machine). -
Fastify 的
fastify-viteVite 插件,支持 SSR 数据。¥
fastify-viteVite plugin for Fastify with SSR data support. -
fastify-vue-pluginNuxt.js Fastify 插件。控制 nuxt 应使用的路由。¥
fastify-vue-pluginNuxt.js plugin for Fastify. Control the routes nuxt should use. -
fastify-wamp-routerFastify 的 Web 应用消息传递协议路由。¥
fastify-wamp-routerWeb Application Messaging Protocol router for Fastify. -
fastify-web-response启用在路由中返回 Web 流对象Response和ReadableStream。¥
fastify-web-responseEnables returning web streams objectsResponseandReadableStreamin routes. -
fastify-webpack-hmrFastify 的 Webpack 热模块重新加载插件。¥
fastify-webpack-hmrWebpack hot module reloading plugin for Fastify. -
fastify-webpack-hotFastify 的 Webpack 热模块替换。¥
fastify-webpack-hotWebpack Hot Module Replacement for Fastify. -
fastify-wsFastify 的 WebSocket 集成 - 支持 WebSocket 生命周期钩子,而不是单个处理程序函数。基于 ws 和 uws 构建。¥
fastify-wsWebSocket integration for Fastify — with support for WebSocket lifecycle hooks instead of a single handler function. Built upon ws and uws. -
fastify-xml-body-parser将 XML 有效负载/请求正文解析为 JS/JSON 对象。¥
fastify-xml-body-parserParse XML payload / request body into JS / JSON object. -
http-wizard为你的 Fastify API 导出 TypeScript API 客户端并确保项目的全栈类型安全。¥
http-wizardExports a typescript API client for your Fastify API and ensures fullstack type safety for your project. -
i18next-http-middleware基于 i18next 的 i18n(国际化)中间件,可与 Express 或 Fastify 等 Node.js Web 框架以及 Deno 一起使用。¥
i18next-http-middlewareAn i18next based i18n (internationalization) middleware to be used with Node.js web frameworks like Express or Fastify and also for Deno. -
Fastify 的
k-fastify-gatewayAPI 网关插件,使用fastify-reply-fromHTTP 代理库的低占用空间实现。¥
k-fastify-gatewayAPI Gateway plugin for Fastify, a low footprint implementation that uses thefastify-reply-fromHTTP proxy library. -
mercuriusFastify 的功能齐全且性能卓越的 GraphQL 服务器实现。¥
mercuriusA fully-featured and performant GraphQL server implementation for Fastify. -
nstats一种快速而紧凑的方式来获取节点应用的所有网络和进程统计信息。Websocket、HTTP/S 和 prometheus 兼容!¥
nstatsA fast and compact way to get all your network and process stats for your node application. Websocket, HTTP/S, and prometheus compatible! -
oas-fastifyOAS 3.x 用于 Fastify 路由自动化。通过快速配置和验证自动生成路由处理程序。¥
oas-fastifyOAS 3.x to Fastify routes automation. Automatically generates route handlers with fastify configuration and validation. -
openapi-validator-middleware支持 Fastify 的基于 Swagger 和 OpenAPI 3.0 规范的请求验证中间件。¥
openapi-validator-middlewareSwagger and OpenAPI 3.0 spec-based request validation middleware that supports Fastify. -
pubsub-http-handlerFastify 插件可轻松创建 Google Cloud PubSub 端点。¥
pubsub-http-handlerA Fastify plugin to easily create Google Cloud PubSub endpoints. -
sequelize-fastifyFastify 的简单轻量级 Sequelize 插件。¥
sequelize-fastifyA simple and lightweight Sequelize plugin for Fastify. -
typeorm-fastify-plugin用于 Fastify 的简单且更新的 Typeorm 插件。¥
typeorm-fastify-pluginA simple and updated Typeorm plugin for use with Fastify.
社区工具
-
@fastify-userland/workflows可在 Fastify 插件中使用的可重复使用的工作流¥
@fastify-userland/workflowsReusable workflows for use in the Fastify plugin -
fast-maker按目录结构生成路由配置。¥
fast-makerroute configuration generator by directory structure. -
fastify-flux使用装饰器构建 Fastify API 并将 Typescript 接口转换为 JSON Schema 的工具。¥
fastify-fluxTool for building Fastify APIs using decorators and convert Typescript interface to JSON Schema. -
jeasx一个基于 Fastify 构建的灵活服务器渲染框架,利用异步 JSX 简化 Web 开发。¥
jeasxA flexible server-rendering framework built on Fastify that leverages asynchronous JSX to simplify web development. -
simple-tjscliCLI 工具,用于从 TypeScript 接口生成 JSON 模式。¥
simple-tjscliCLI tool to generate JSON Schema from TypeScript interfaces. -
vite-plugin-fastify用于 Vite 的 Fastify 插件,具有热模块替换功能。¥
vite-plugin-fastifyFastify plugin for Vite with Hot-module Replacement. -
vite-plugin-fastify-routes使用 Vite 为 Fastify 应用提供基于文件的路由。¥
vite-plugin-fastify-routesFile-based routing for Fastify applications using Vite.