Skip to content

Commit f66681a

Browse files
author
kamil.mysliwiec
committed
docs(@nestjs) update jsdoc & interfaces
1 parent d2143d1 commit f66681a

36 files changed

Lines changed: 9920 additions & 53 deletions

examples/01-users/.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-users/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-users/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)