1.0.7 • Published 1 year ago
write-module v1.0.7
write-module
If you use the modular pattern for an express application, each module in the modules directory needs to have at least five files (controller, route, service, interface, model). This package is a CLI tool to create those files easily.
Install globally
$ npm install -g write-module Usage
$ write-module hello-worldThis command will create a hello-world directory with the following files in the src/modules directory.
├── user.interface.ts
├── user.route.ts
├── user.controller.ts
├── user.model.ts
└── user.service.tsYou can change the output directory path by using the following command
$ write-module hello-world src/app/modulesNow the directory with the file will be created in src/app/modules