A Nest framework (node.js) module for registering and getting consul service easily.
[travis-image]: https://api.travis-ci.org/nest-cloud/nestcloud.svg?branch=master
[travis-url]: https://travis-ci.org/nest-cloud/nestcloud
[linux-image]: https://img.shields.io/travis/nest-cloud/nestcloud/master.svg?label=linux
[linux-url]: https://travis-ci.org/nest-cloud/nestcloud
NestCloud core component.
``bash`
$ npm install @nestcloud/core --save
`typescript
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { NestCloud } from '@nestcloud/core';
async function bootstrap() {
const app = NestCloud.create(await NestFactory.create(AppModule));
await app.listen(3000);
}
bootstrap();
``
- Author - NestCloud
NestCloud is MIT licensed.