trabus / blprnt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

blprnt

Build Status Build status

Under Construction

A tool for describing and generating files and directory structures.

Extracted from ember-cli.

Writing a blueprint

example-blueprint/
├── files
│   ├── lib
│   │   └── __name__.js
│   └── tests
│       └── __name__-test.js
└── index.js

Installing a blueprint

var Blueprint = require('ember-cli-blueprint');

var blueprint = Blueprint.load('blprnt');

var options = {
  entity: {
    name: 'foo'
  },
  target: 'path/to/destination'
};

blueprint.install(options)
  .then(function() {
    console.log('Done!');
  });

Generates the following:

path/to/destination/
├── lib
│   └── foo.js
└── tests
    └── foo-test.js

About


Languages

Language:JavaScript 99.7%Language:GCC Machine Description 0.3%