Skip to content

Commit

Permalink
add 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zuohuadong committed Dec 20, 2017
1 parent 245e2d4 commit 668cd71
Show file tree
Hide file tree
Showing 10 changed files with 132 additions and 51 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions 4.5/_navbar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [4.5](/4.5/)
64 changes: 64 additions & 0 deletions 4.5/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
- 介绍
- [介绍](4.5/Introduction.md)

- 概述
- [第一步](4.5/FirstSteps.md)
- [控制器](4.5/Controllers.md)
- [组件](4.5/Components.md)
- [模块](4.5/Modules.md)
- [中间件](4.5/Middlewares.md)
- [异常过滤器](4.5/ExceptionFilters.md)
- [管道](4.5/Pipes.md)
- [看守器](4.5/Guards.md)
- [拦截器](4.5/Interceptors.md)
- [自定义装饰器](4.5/CustomDecorators.md)

- 基础
- [依赖注入](4.5/DependencyInjection.md)
- [异步组件](4.5/AsyncComponents.md)
- [循环依赖](4.5/CircularDependency.md)
- [单元测试](4.5/Unit.md)
- [E2E 测试](4.5/E2E.md)

- WEBSOCKETS
- [网关](4.5/Gateways.md)
- [异常过滤器](4.5/ExceptionFilters2.md)
- [管道](4.5/Pipes2.md)
- [看守器](4.5/Guards2.md)
- [拦截器](4.5/Interceptors2.md)
- [适配器](4.5/Adapter.md)

- 微服务
- [基本信息](4.5/Basics.md)
- [Redis](4.5/Redis.md)
- [异常过滤器](4.5/ExceptionFilters3.md)
- [管道](4.5/Pipes3.md)
- [看守器](4.5/Guards3.md)
- [拦截器](4.5/Interceptors3.md)
- [自定义传输](4.5/CustomTransport.md)

- 高级
- [分层注入](4.5/HierarchicalInjector.md)
- [类型混淆](4.5/MixinClass.md)

- 秘籍
- [SQL (4.5/TypeORM)](4.5/SQLT.md)
- [MongoDB (4.5/Mongoose)](4.5/MongoDB.md)
- [MongoDB E2E (4.5/Mockgoose)](4.5/MongoDBE2E.md)
- [SQL (4.5/Sequelize)](4.5/SQLS.md)
- [集成认证](4.5/Passportintegration.md)
- [CQRS](4.5/CQRS.md)
- [OpenAPI (4.5/Swagger)](4.5/OpenAPI.md)
- [GraphQL](4.5/GraphQL.md)

- FAQ
- [Express 实例](4.5/ExpressInstance.md)
- [全局路由前缀](4.5/GlobalRoutePrefix.md)
- [生命周期事件](4.5/LifecycleEvents.md)
- [混合应用](4.5/HybridApplication.md)
- [HTTPS 和 多服务](4.5/HTTPSMultipleServers.md)
- [样例](4.5/Examples.md)


- SUPPORT ME
- [Changelog](4.5/changelog.md)
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@

> 使用 Git 安装一个项目:
| TypeScript | JavaScript |
| ------------- |:-------------:|
| `$ git clone https://github.com/nestjs/typescript-starter.git project| $ git clone https://github.com/nestjs/javascript-starter.git project|
$ cd project
$ npm install
$ npm run start
``` |
## TypeScript
```
Expand All @@ -34,4 +45,6 @@ $ npm run start
```
$ npm i --save @nestjs/core @nestjs/common @nestjs/microservices @nestjs/websockets @nestjs/testing reflect-metadata rxjs
```
```
## [查看 4.5 文档](/4.5/)
2 changes: 1 addition & 1 deletion _coverpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@


[GitHub](https://github.com/nestjs/nest)
[Get Started](#quick-start)
[Get Started](4.5/FirstSteps.md)
1 change: 1 addition & 0 deletions _navbar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [4.5](/4.5/)
92 changes: 46 additions & 46 deletions _sidebar.md
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
- 介绍
- [介绍](Introduction.md)
- [介绍](4.5/Introduction.md)

- 概述
- [第一步](FirstSteps.md)
- [控制器](Controllers.md)
- [组件](Components.md)
- [模块](Modules.md)
- [中间件](Middlewares.md)
- [异常过滤器](ExceptionFilters.md)
- [管道](Pipes.md)
- [看守器](Guards.md)
- [拦截器](Interceptors.md)
- [自定义装饰器](CustomDecorators.md)
- [第一步](4.5/FirstSteps.md)
- [控制器](4.5/Controllers.md)
- [组件](4.5/Components.md)
- [模块](4.5/Modules.md)
- [中间件](4.5/Middlewares.md)
- [异常过滤器](4.5/ExceptionFilters.md)
- [管道](4.5/Pipes.md)
- [看守器](4.5/Guards.md)
- [拦截器](4.5/Interceptors.md)
- [自定义装饰器](4.5/CustomDecorators.md)

- 基础
- [依赖注入](DependencyInjection.md)
- [异步组件](AsyncComponents.md)
- [循环依赖](CircularDependency.md)
- [单元测试](Unit.md)
- [E2E 测试](E2E.md)
- [依赖注入](4.5/DependencyInjection.md)
- [异步组件](4.5/AsyncComponents.md)
- [循环依赖](4.5/CircularDependency.md)
- [单元测试](4.5/Unit.md)
- [E2E 测试](4.5/E2E.md)

- WEBSOCKETS
- [网关](Gateways.md)
- [异常过滤器](ExceptionFilters2.md)
- [管道](Pipes2.md)
- [看守器](Guards2.md)
- [拦截器](Interceptors2.md)
- [适配器](Adapter.md)
- [网关](4.5/Gateways.md)
- [异常过滤器](4.5/ExceptionFilters2.md)
- [管道](4.5/Pipes2.md)
- [看守器](4.5/Guards2.md)
- [拦截器](4.5/Interceptors2.md)
- [适配器](4.5/Adapter.md)

- 微服务
- [基本信息](Basics.md)
- [Redis](Redis.md)
- [异常过滤器](ExceptionFilters3.md)
- [管道](Pipes3.md)
- [看守器](Guards3.md)
- [拦截器](Interceptors3.md)
- [自定义传输](CustomTransport.md)
- [基本信息](4.5/Basics.md)
- [Redis](4.5/Redis.md)
- [异常过滤器](4.5/ExceptionFilters3.md)
- [管道](4.5/Pipes3.md)
- [看守器](4.5/Guards3.md)
- [拦截器](4.5/Interceptors3.md)
- [自定义传输](4.5/CustomTransport.md)

- 高级
- [分层注入](HierarchicalInjector.md)
- [类型混淆](MixinClass.md)
- [分层注入](4.5/HierarchicalInjector.md)
- [类型混淆](4.5/MixinClass.md)

- 秘籍
- [SQL (TypeORM)](SQLT.md)
- [MongoDB (Mongoose)](MongoDB.md)
- [MongoDB E2E (Mockgoose)](MongoDBE2E.md)
- [SQL (Sequelize)](SQLS.md)
- [集成认证](Passportintegration.md)
- [CQRS](CQRS.md)
- [OpenAPI (Swagger)](OpenAPI.md)
- [GraphQL](GraphQL.md)
- [SQL (4.5/TypeORM)](4.5/SQLT.md)
- [MongoDB (4.5/Mongoose)](4.5/MongoDB.md)
- [MongoDB E2E (4.5/Mockgoose)](4.5/MongoDBE2E.md)
- [SQL (4.5/Sequelize)](4.5/SQLS.md)
- [集成认证](4.5/Passportintegration.md)
- [CQRS](4.5/CQRS.md)
- [OpenAPI (4.5/Swagger)](4.5/OpenAPI.md)
- [GraphQL](4.5/GraphQL.md)

- FAQ
- [Express 实例](ExpressInstance.md)
- [全局路由前缀](GlobalRoutePrefix.md)
- [生命周期事件](LifecycleEvents.md)
- [混合应用](HybridApplication.md)
- [HTTPS 和 多服务](HTTPSMultipleServers.md)
- [样例](Examples.md)
- [Express 实例](4.5/ExpressInstance.md)
- [全局路由前缀](4.5/GlobalRoutePrefix.md)
- [生命周期事件](4.5/LifecycleEvents.md)
- [混合应用](4.5/HybridApplication.md)
- [HTTPS 和 多服务](4.5/HTTPSMultipleServers.md)
- [样例](4.5/Examples.md)


- SUPPORT ME
- [Changelog](changelog.md)
- [Changelog](4.5/changelog.md)
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@
<div id="app"></div>
<script>
window.$docsify = {
name: 'nestcn',
repo: 'docs',
name: 'nestjs',
repo: 'nestcn/docs',
coverpage: true,
loadSidebar: true
loadSidebar: true,
loadNavbar: true,
routerMode: 'history'
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
Expand Down

0 comments on commit 668cd71

Please sign in to comment.