prj
v0.0.2
Published
Init your project with templates from npm
Downloads
10
Readme
prj
Init your project with templates from npm
Another "git clone", the one for npm
But other than npm-clone, which uses git
Usage
$ npm install --global prj
$ cd my-site/
$ prj get-voice-siteOr:
$ prj get-voice-site some/dir/else/Or:
var init = require('prj').init
var colors = require('colors-mini')
init('./my-site/', 'get-voice-site', function(e, stdout, stderr){
if (stdout) {
console.log(colors.green(stdout))
}
if (stderr) {
console.log(colors.red(stderr))
}
if (e) throw e
})