0.0.3 • Published 10 years ago

index.js v0.0.3

Weekly downloads
13,038
License
MIT
Repository
github
Last release
10 years ago

index.js

Module loader

Installation

npm install index.js

Usage

Example directory structure

models
├── index.js
├── user.js
└── blog.js

In index.js

module.exports = require('index.js')(__dirname);

Models will automatically loaded

var models = require('./models');
models.user == require('./models/user');

License

MIT