1.0.0 • Published 6 years ago

smart-node-import v1.0.0

Weekly downloads
2
License
-
Repository
github
Last release
6 years ago

smart-node-import

Require modules from defined project's root path.

Installation

npm install smart-node-import

Usage

Just once, in your bootstrap file. First parameter is a root path, and the second one is a cache path, which is optional.

require('smart-node-import')(__dirname + '/app', __dirname + '/temp');

Then to load modules from project's root path use @/ at the beginning:

const module = require('@/models/User');