0.0.3 • Published 12 years ago

noksha v0.0.3

Weekly downloads
3
License
-
Repository
github
Last release
12 years ago

noksha

a very simple dependency manager

Minimal git support added to this version but more features will be coming soon.

##Installation

Installing via npm

$ npm install -g noksha

##Usage

Create a file called blueprint.yml, preferably in your project root. And then define your own blueprint like the sample one.

Sample blueprint.yml for a Backbone project

jquery:
    web:    http://code.jquery.com/jquery.js
    target: js/libs/jquery.js

requirejs:
    web:    http://requirejs.org/docs/release/2.0.5/minified/require.js
    target: js/libs/require.js

underscore:
    web:    http://underscorejs.org/underscore.js
    target: js/libs/underscore.js

backbone:
    web:    http://backbonejs.org/backbone.js
    target: js/libs/backbone.js

handlebars:
    web:    http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.0.beta.6.js
    target: js/libs/handlebars.js

after running command noksha at root directory it generates the following -

.
├── blueprint.yml
└── js
    └── libs
        ├── backbone.js
        ├── handlebars.js
        ├── jquery.js
        ├── require.js
        └── underscore.js

2 directories, 6 files