This package has been deprecated

Author message:

not maintained

specla-autoloader

1.0.0 • Public • Published

Specla Autoloader

npm version Build Status Dependency Status devDependencies Status Standard - JavaScript Style Guide

Autoload modules and json files with ease. This packages constructs an object that reflects your folder structure and auto require the files within the specified path.

Install

npm install --save specla-autoloader

Usage

const path = require('path')
const Autoloader = require('specla-autoloader')
 
const { modules } = new Autoloader(path.resolve('./modules'))

Options

const { modules } = new Autoloader(__dirname, {
  include: ['js', 'json'], // specifies which file types to include
  ignore: [
    'node_modules', // ignore folders
    'some-file.js' // ignore specific file
  ]
})

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Published

Version History

  • Version
    Downloads (Last 7 Days)
    • Published

Package Sidebar

Install

npm i specla-autoloader

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • kvartborg