write-module
v1.0.7
Published
CLI tool for quickly generating necessary files for an Express application following the modular pattern.
Downloads
18
Maintainers
Readme
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-world
This 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.ts
You can change the output directory path by using the following command
$ write-module hello-world src/app/modules
Now the directory with the file will be created in src/app/modules