$ cnpm install sails-generate-api

A api generator for use with the Sails command-line interface.
Certain generators are installed by default in Sails, but they can be overridden. Check the Sails docs for information on installing generator overrides / custom generators.
In your app directory:
$ npm install sails-generate-api
Then edit this project's ./.sailsrc file (see below for details). If no local .sailsrc file exists yet, you can just create one.
In your $HOME folder (i.e. ~/):
$ npm install sails-generate-api
Then edit your global ~/.sailsrc file (see below for details). If no global .sailsrc file exists yet, you can just create one.
.sailsrc file to use this generatorAdd or replace the module used for generating a "api":
{
"generators": {
"modules": {
"api": "sails-generate-api"
}
}
}
Now that the generator is installed, you can test it:
$ sails generate api foobar
MIT © 2014 balderdashy & [contributors] Mike McNeil, Balderdash & contributors
Sails is free and open-source under the MIT License.
Copyright 2013 - present © cnpmjs.org | Home |