Socket
Socket
Sign inDemoInstall

import-folder

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    import-folder

Import all exported modules from files in folder at once


Version published
Maintainers
1
Created

Readme

Source

import-folder

Import or require all folder modules at once

While importing or requiring many modules from a folder, one may find necessity for something such as an index that exports each single file so that modules would be imported at once. This creates maintance problems, since you have to remember to export them every time.

Works with for both Typescript and Javascript modules!

import-folder helps you import all exports within a folder at once

npm

vscode suggestions

License: MIT npm version Build Status Coverage Status Downloads

Installation

Use your favorite package manager to install. For instance:

  yarn add import-folder

Then import it with ES or CommonJS:

import importFolder from 'import-folder'

Given an example folder helpers with files named math.js and prompt.ts exporting example modules:

const modules = importFolder('helpers')

modules.math.add(2,2)
modules.prompt('Hello World')  

Or directly deconstructing modules:

const { math, prompt } = importFolder('helpers')

math.add(2,2)
prompt('Hello World')  

Testing

Run the test suit with yarn test.

Contributing

If you want to contribute in any of theses ways:

  • Give your ideas or feedback
  • Question something
  • Point out a problem or issue
  • Enhance the code or its documentation
  • Help in any other way

You can (and should) open an issue or even a pull request!

Thanks for your interest in contributing to this repo!

Author

Luiz Felipe Zarco (felipezarco@hotmail.com)

License

This code is licensed under the MIT License. See the LICENSE.md file for more info.

Keywords

FAQs

Last updated on 03 Dec 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc