a nodejs framework
npm install dovejs> A Node.js framework.
npm
$ npm install --save dovejs
`CLI
`npm
$ npm install -g dovejs-cli
`Note
Necessary directories description.
* static Static files.Boot
`typescript
import { bootstrap } from 'dovejs';
import { AppModule } from './app/module';bootstrap({
cors: true,
port: 7000,
appModule: AppModule,
});
``