mvc-express-cli
v1.2.0
Published
This is a cli tool for [mvc-express](https://pajtai.github.io/mvc-express/).
Downloads
4
Readme
mvc-express-cli
This is a cli tool for mvc-express.
Installation
npm install -g mvc-express-cli
Usage
mvc list
This will list all of your available controllers, models, and services.
mvc controllers new <name> [type]
mvc controller Pages
This creates a new controller relative to the nearest package.json
. It is created at
app/http/controllers/resource/${name}.controller.js
if no type is specified. If you
specify basic
for the type, it would get created in the basic directory.