nodexp v0.0.4
Nodexp
A simple command-line tool for Node.js APIs boilerplate, inspirade on Ruby on Rails and Express generator
:warning::warning: This module is on development mode and it is not ready to be used in real web applications yet :warning::warning:
Index
Dependencies
Installation
Download from NPM:
npm install -g nodexpUsage
nodexp <command>
Quick Start
Create a new project:
nodexp new awesome-apiInstall the dependencies:
cd awesome-api
npm installRun your app:
npm startVisit localhost:3000
Commands
new
Creates a new project
nodexp new <project-name>e.g
nodexp new awesome-apigenerate
Generate some boilerplate.
usage:
nodexp generate <boilerplate>alias: nodexp g <boilerplate>
See the boilerplate section below to get a list of available generators
Boilerplates
All those boilerplates can be generated through nodexp generate command.
model
nodexp generate model <model-name>
Creates a new model inside the /model directory
nodexp generate model UserYou also can pass some initial properties and their respective types
nodexp g model User name:string age:numberSupport
Please open an issue for support.
