@vulkano/cli
v0.1.14
Published
Proyecto para facilitar el uso de Vulkano
Readme
Proposal:
npm install -g @vulkano/cliCreating a controller
vulkano create controller
-> Enter the controller name: UserCreating a model
vulkano create model
-> Enter the model name: UserSaving a new record
vulkano save record
-> Select the model: User
-> Enter the "firstName": Jhon
-> Enter the "lastName": Doe
-> Enter the "email": [email protected]
Do you want to save the record to the model "User"? (Y/N)Find records
vulkano find record
-> Select the model: User
-> Filter by: "email: [email protected]"Update record
vulkano update record
-> Select the model: User
-> Condition: "_id: ID"
-> Enter the field "firstName": "prepopulated"
-> Enter the field "lasttName": "prepopulated"
Do you want to update the record to the model "User"? (Y/N)