1.4.0 • Published 7 years ago
import-file v1.4.0
import-file
Import the closest file as a node module with loader.
What is it
Say you're writing a CLI tool. You may want the following features:
- Get the closest configure file
- Automatically register module loader according to extension name
import-file manages these for you.
Example
/project/my_config.babel.js
export default {
name: 'awesome',
};/project/src/index.js
const importFile = require('import-file');
const config = importFile('my_config.babel.js');
console.log(config.name);$ cd /project/src && node index
# => `awesome`Usage
importFile(filepath, options)
Import a file as a node module. Return a node module if the file exists, otherwise throw an error.
Arguments
filepath(String): Target file path. If not provide a extension name, it will automatically add extension and register module loader. For more detail of extensions and modules, please read interpret.options(Object): These are all the available options.cwd(String): The directory resolves from. Defaults toprocess.cwd()useLoader(Boolean): Enable automatically register module loader according to the adding extension name. Defaults totrueuseFindUp(Boolean): Find by walking up parent directories. Defaults totrueuseCache(Boolean): Cache imported file. The same behaviour with node.jsrequire. Default totrue.useESDefault(Boolean): Exportdefaultin ES module. Default totrue.resolvers(String): TellimportFilewhat directories should be searched when resolving filesexts(String): Extensions white list for loader. Only work ifuseLoaderistrue. Defaults to all interpret extensions
importFile.resolve(filepath, options)
The same with importFile(), but just return the resolved filename. Throw an error if the file is not exists.
Installing
$ npm install import-fileLicense
MIT