2.0.1 • Published 9 years ago

rq-dir v2.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

node-rq-dir@1.0.0

onde-rq-dir is a RequireJS plugin to recursively require files from a directory. It is useful when using requirejs with node. Please note that although the examples are written in CoffeeScript, the plugin currently only reads JavaScript files. Any other files in the folder will be ignored.

define ['rq-dir!configDir', 'path'], (dir, path) ->
  config = {}
  for filename, content of dir
    config[path.basename filename, '.js'] = content
  return config

Example

Assuming the following directory structure

+-- example
|   +-- main.coffee
|   +-- config
|   |   +-- router.js
|   |   +-- database.js
|   |   +-- info.txt
|   |   +-- middleware
|   |   |   +-- security.js

and files router.js, database.js, and security.js all containing

define({});

running the following code from inside example directory

requirejs = require 'requirejs'

requirejs.config
  baseUrl = ''
  nodeRequire: require

requirejs ['rq-dir!configDir', 'path'], (dir, path) ->
  config = {}
  for filename, content of dir
    config[path.basename filename, '.js'] = content
  console.log config

will print (except for comments)

{ database: {}, router: {},  security: {} }

Todos

There should be an option to use another plugin for loading the files.