Skip to content

Commit 0a8ca77

Browse files
interceptors feature, rxjs based websockets API, reflector API,final core commit
1 parent 0c2466c commit 0a8ca77

77 files changed

Lines changed: 2020 additions & 73 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# dependencies
2-
/node_modules
2+
node_modules/
33

44
# IDE
55
/.idea

examples/01-cats-app/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# dependencies
2+
/node_modules
3+
4+
# IDE
5+
/.idea
6+
/.awcache
7+
/.vscode
8+
9+
# misc
10+
npm-debug.log
11+
12+
# example
13+
/quick-start
14+
15+
# tests
16+
/test
17+
/coverage
18+
/.nyc_output
19+
20+
# dist
21+
/dist

examples/01-cats-app/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[![Nest Logo](http://kamilmysliwiec.com/public/nest-logo.png)](http://kamilmysliwiec.com/)
2+
3+
<img src="https://github.com/remojansen/logo.ts/blob/master/ts.png?raw=true" width="18"> TypeScript Starter repository for [Nest](https://github.com/kamilmysliwiec/nest) framework.
4+
5+
## Installation
6+
7+
```
8+
$ npm install
9+
```
10+
11+
## Start
12+
13+
```
14+
$ npm run start
15+
```
16+
17+
## People
18+
19+
- Author - [Kamil Myśliwiec](http://kamilmysliwiec.com)
20+
- Website - [http://nestjs.com](http://nestjs.com/)

examples/01-cats-app/index.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
require('ts-node/register');
2+
require('./src/server');
3+
4+
5+
6+
7+
8+
9+
10+
11+
12+
13+
14+

0 commit comments

Comments
 (0)