All scripts necessary for setup Sailor projects
npm install sailor-scripts




> All scripts necessary for setup Sailor projects
```
npm install sailor-scripts
`coffeescript`
scripts = require 'sailor-scripts'
#### .run(\
Run a shell command without returning the output
#### .exec(\
Exec a shell command and return the output or return a callback with the output.
#### .newBase([directory], [options], [callback])
Generate a new Sailor Base Proyect.
* dir by default is process.cwd()options
* can be:name
* : name of the folder projectorganization
* : name of the organization (for git repository)repository
* : name of the git reposositorydescription
* : description for your project
By default the name and the repository is the same (testApp) and the organization is sailorjs
#### .newModule([directory], [options], [callback])
Generate a new Module for Sailor Base Proyect.
* dir by default is process.cwd()options
* can be:name
* : name of the folder projectorganization
* : name of the organization (for git repository)repository
* : name of the git reposositorydescription
* : description for your project
By default the name and the repository is the same (testApp) and the organization is sailorjs
#### .link(\
Create a symbolic link. User for linked a module with your base.
#### .writeModuleFile(\
Use for write in the config/modules the name of your module. Necessary for load the module in the Sails core.
#### .clean(\
Clear a directory.
#### .lift([directory], [options], [callback])
Lift a project, like:
* directory: path under start the server. by default is procress.cwd()options`: options to pass to sails core (like log level, node environment,...)
*
MIT © sailorjs