UNPKG

1.54 kBMarkdownView Raw
1# Bijous
2
3
4[![Build Status](https://travis-ci.org/mbrio/bijous.svg?branch=master)](https://travis-ci.org/mbrio/bijous) [![Dependency Status](https://gemnasium.com/mbrio/bijous.svg)](https://gemnasium.com/mbrio/bijous) [![Code Climate](https://codeclimate.com/github/mbrio/bijous/coverage.png)](https://codeclimate.com/github/mbrio/bijous)
5
6[![NPM Status](https://nodei.co/npm/bijous.png?downloads=true)](https://npmjs.org/package/bijous)
7
8An asynchronous module loader. Searches out modules within a file system using
9[Klect](https://github.com/awnist/klect) and supplies an asynchronous means of
10initializing them. Initialized modules may provide a service that can be used by
11other modules and is made available to external code after loading has
12completed.
13
14## Installation
15
16You can use this node module in your project by executing the following:
17
18```Shell
19$ npm install bijous
20```
21
22or by saving it to your *package.json* file:
23
24```Shell
25$ npm install --save bijous
26```
27
28In order to build, test, or generate documentation you must have gulp installed:
29
30```Shell
31$ npm install -g gulp
32```
33
34## Building
35
36```Shell
37$ npm install && gulp build
38```
39
40## Testing
41
42```Shell
43$ npm install && gulp test
44```
45
46## Documentation
47
48```Shell
49$ npm install && gulp docs
50```
51
52Once the documentation is built you can open the *index.html* within the *docs*
53directory.
54
55You can see the latest API documentation at http://mbrio.github.io/bijous.
56
57## License
58
59[ICS](http://opensource.org/licenses/ISC) © 2014 Michael Diolosa
60<michael.diolosa@gmail.com>