svr-imp/README.md

80 lines
3.4 KiB
Markdown
Raw Normal View History

2017-10-11 10:29:26 +00:00
<p align="center">
2018-03-26 17:23:10 +00:00
<a href="http://nestjs.com/" target="blank"><img src="https://nestjs.com/img/logo_text.svg" width="320" alt="Nest Logo" /></a>
2017-10-11 10:29:26 +00:00
</p>
2017-02-25 14:16:12 +00:00
2017-10-11 10:29:26 +00:00
[travis-image]: https://api.travis-ci.org/nestjs/nest.svg?branch=master
[travis-url]: https://travis-ci.org/nestjs/nest
[linux-image]: https://img.shields.io/travis/nestjs/nest/master.svg?label=linux
[linux-url]: https://travis-ci.org/nestjs/nest
2018-03-26 17:23:10 +00:00
<p align="center">A progressive <a href="http://nodejs.org" target="blank">Node.js</a> framework for building efficient and scalable server-side applications, heavily inspired by <a href="https://angular.io" target="blank">Angular</a>.</p>
2017-10-11 10:29:26 +00:00
<p align="center">
2018-03-26 17:23:10 +00:00
<a href="https://www.npmjs.com/~nestjscore"><img src="https://img.shields.io/npm/v/@nestjs/core.svg" alt="NPM Version" /></a>
2017-10-11 10:29:26 +00:00
<a href="https://www.npmjs.com/~nestjscore"><img src="https://img.shields.io/npm/l/@nestjs/core.svg" alt="Package License" /></a>
2017-10-11 10:32:25 +00:00
<a href="https://www.npmjs.com/~nestjscore"><img src="https://img.shields.io/npm/dm/@nestjs/core.svg" alt="NPM Downloads" /></a>
2017-10-11 10:29:26 +00:00
<a href="https://travis-ci.org/nestjs/nest"><img src="https://api.travis-ci.org/nestjs/nest.svg?branch=master" alt="Travis" /></a>
<a href="https://travis-ci.org/nestjs/nest"><img src="https://img.shields.io/travis/nestjs/nest/master.svg?label=linux" alt="Linux" /></a>
2018-03-26 17:23:10 +00:00
<a href="https://coveralls.io/github/nestjs/nest?branch=master"><img src="https://coveralls.io/repos/github/nestjs/nest/badge.svg?branch=master#5" alt="Coverage" /></a>
2017-10-11 10:29:26 +00:00
<a href="https://gitter.im/nestjs/nestjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=body_badge"><img src="https://badges.gitter.im/nestjs/nestjs.svg" alt="Gitter" /></a>
<a href="https://opencollective.com/nest#backer"><img src="https://opencollective.com/nest/backers/badge.svg" alt="Backers on Open Collective" /></a>
<a href="https://opencollective.com/nest#sponsor"><img src="https://opencollective.com/nest/sponsors/badge.svg" alt="Sponsors on Open Collective" /></a>
2018-03-27 10:21:32 +00:00
<a href="https://paypal.me/kamilmysliwiec"><img src="https://img.shields.io/badge/Donate-PayPal-dc3d53.svg"/></a>
2018-03-26 17:23:10 +00:00
<a href="https://twitter.com/nestframework"><img src="https://img.shields.io/twitter/follow/nestframework.svg?style=social&label=Follow"></a>
2017-10-11 10:29:26 +00:00
</p>
<!--[![Backers on Open Collective](https://opencollective.com/nest/backers/badge.svg)](https://opencollective.com/nest#backer)
[![Sponsors on Open Collective](https://opencollective.com/nest/sponsors/badge.svg)](https://opencollective.com/nest#sponsor)-->
2017-02-25 14:16:12 +00:00
2017-10-11 10:29:26 +00:00
## Description
2018-03-27 11:47:26 +00:00
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
2017-12-17 17:36:31 +00:00
2017-05-14 20:57:43 +00:00
## Installation
2017-02-25 14:16:12 +00:00
2017-10-11 10:29:26 +00:00
```bash
2017-02-25 14:16:12 +00:00
$ npm install
```
2018-03-26 18:42:17 +00:00
## Running the app
2017-02-25 14:16:12 +00:00
2018-03-26 18:42:17 +00:00
```bash
# development
2017-02-25 14:16:12 +00:00
$ npm run start
2018-03-26 18:42:17 +00:00
# watch mode
$ npm run start:dev
2018-03-26 19:19:56 +00:00
# incremental rebuild (webpack)
$ npm run webpack
$ npm run start:hmr
2018-03-26 18:42:17 +00:00
# production mode
npm run start:prod
2017-02-25 14:16:12 +00:00
```
2017-05-14 20:57:43 +00:00
2017-12-17 17:36:31 +00:00
## Test
2018-03-26 18:42:17 +00:00
```bash
# unit tests
2017-12-17 17:36:31 +00:00
$ npm run test
2018-03-26 18:42:17 +00:00
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
2017-12-17 17:36:31 +00:00
```
2018-03-26 17:23:10 +00:00
## Support
2018-03-28 17:26:22 +00:00
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
2017-05-14 20:57:43 +00:00
2018-03-26 17:23:10 +00:00
## Stay in touch
2017-05-14 20:57:43 +00:00
2017-10-07 11:19:50 +00:00
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
2018-03-26 17:23:10 +00:00
- Twitter - [@nestframework](https://twitter.com/nestframework)
2017-10-11 10:29:26 +00:00
2018-03-26 17:23:10 +00:00
## License
2017-10-11 10:29:26 +00:00
2018-03-26 17:23:10 +00:00
Nest is [MIT licensed](LICENSE).