mcap-generator-ionic
v0.14.1
Published
## Installation Install the module with: `npm install mcap-generator` ` ## Example ```javascript var Generator = require('mcap-generator-ionic');
Downloads
51
Readme
mcap-generator-ionic
Installation
Install the module with: npm install mcap-generator
`
Example
var Generator = require('mcap-generator-ionic');
var options = {
directory: 'myapp',
template: 'helloworld',
templateValues: {
name: 'My first App',
package: 'com.company.myfirstapp'
}
}
var gen = new Generator();
gen.createApp(options, function (err) {
if(err) {
console.error(err);
return;
}
console.log('Done!');
});
##Testing
Running ```npm test`` will run the unit tests with mocha.