0.0.4 • Published 8 years ago

dssrv-use v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Use

Require files, modules and directories too

Install

npm install dssrv-use

Require

  • files: use('/path/to/file.js') - this includes a single file
  • modules: use('/path/to/module') - this includes a default or a custom module
  • directories: use('/path/to/directory') - This includes all .js files in a directory
  • AutoInstallIfmissing: use('/path/to/directory', install) - This includes all .js files in a directory and Installs missing modules also it will accept install to be a callback or function.

How does module requireing work?

It will traverse up from the current directory to search for a module in a node_modules folder until it finds it. If no modules match it will try to inlcude the directory.

Example

// file structure
- root
	- node_modules
		- matrix
	- project
		- server.js
// in server.js
use('matrix');