express-module-with-devriaz
v1.1.4
Published
Single-command module to generate one or many CRUD module folders under ./modules (auto-created).
Maintainers
Readme
express-module-with-devriaz (v1.1)
Generates module folders like your attendance style:
*.controller.ts*.service.ts*.model.ts*.interface.ts*.validation.ts*.route.ts
✅ Default output folder is always ./modules
✅ If ./modules does not exist, it will be created automatically
✅ You can generate multiple modules in one command
One command (single module)
npx express-module-with-devriaz student
# creates ./modules/student/...One command (multiple modules)
npx express-module-with-devriaz student teacher user auth
# creates:
# ./modules/student/...
# ./modules/teacher/...
# ./modules/user/...
# ./modules/auth/...