书栈网 · BookStack 本次搜索耗时 0.033 秒,为您找到 361 个相关结果.
  • Introduction

    Introduction Philosophy Installation Alternatives Introduction Nest (NestJS) is a framework for building efficient, scalable Node.js server-side applications. It uses progre...
  • Introduction

    1530 2019-11-16 《Nest.js v6.0 Document》
    Introduction Philosophy Installation Stay in touch Introduction Nest (NestJS) is a framework for building efficient, scalable Node.js server-side applications. It uses prog...
  • 微服务

    微服务 基本 模式(Patterns) 异步响应 客户端 Redis 异常过滤器 管道 看守器 拦截器 自定义传输 服务器 客户端 微服务 基本 「微服务」在这里不是合适的词。实际上,Nest microservice 只是一个使用不同传输层(不是HTTP)的应用程序。、 Nest 提供两种通信支持 - TCP 和 ...
  • 一、项目创建&路由设置&模块

    Nest.js 从零到壹系列(一):项目创建 & 路由设置 & 模块 前言 一、项目创建 二、Hello World! 1. 路由指向 2. 局部路由前缀 3. 全局路由前缀 4. 使用 nodemon 模式启动项目 三、新增模块 1. Service 2. Controller 3. Module 总结 Nest.js 从零...
  • Gateways

    Gateways Installation Overview Multiple responses Asynchronous responses Lifecycle hooks Server Official enterprise support Example Gateways Most of the concepts discus...
  • 中间件

    中间件 依赖注入 中间件放在哪里 将参数传递给中间件 异步中间件 函数式中间件 多个中间件 全局中间件 中间件 中间件是一个在路由处理器之前被调用的函数。 中间件功能可以访问请求和响应对象,以及应用程序请求响应周期中的下一个中间件功能。下一个中间件函数通常由名为 next 的变量表示。 Nest 中间件实际上等价于 expres...
  • 模块

    模块 CatsModule 共享模块 模块重新导出 依赖注入 全局模块 动态模块 模块 模块是具有 @Module () 装饰器的类。 @Module () 装饰器提供了元数据,Nest 用它来组织应用程序结构。 每个 Nest 应用程序至少有一个模块,即根模块。根模块是Nest开始安排应用程序树的地方。事实上,根模块可能是应用...
  • 看守器

    看守器 授权看守器 基于角色的认证 反射器 看守器 看守器是一个使用 @Guard () 装饰器的类。 看守器应该使用 CanActivate 接口。 看守器有一个单独的责任。它们确定请求是否应该由路由处理程序处理。到目前为止, 访问限制逻辑大多在中间件内。这样很好, 因为诸如 token 验证或将req对象附加属性与特定路由没有强关...
  • Cookies

    Cookies Use with Express (default) Use with Fastify Creating a custom decorator (cross-platform) Cookies An HTTP cookie is a small piece of data stored by the user’s browser...
  • Prisma

    Prisma Getting started Create your NestJS project Set up Prisma Set the database connection Create two database tables with Prisma Migrate Install and generate Prisma Client ...