UNPKG

generator-nest-js-boilerplate

Version:

This generator will help you to build your own Nest.js Mongodb API using TypeScript 4

15 lines (13 loc) 306 B
const chalk = require('chalk'); const yosay = require('yosay'); module.exports = { sayHello() { this.log( yosay( `Welcome to the \n ${chalk.bgRed.white.bold( 'NESTJS Generator!', )} \n Let's scaffold a new ${chalk.bgRed.white('NESTJS APP')}`, ), ); }, };