
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
contents-loader
Advanced tools
Webpack loader to import the contents of a directory.
For a directory structure like:
└── abc
├── foo.js
├── bar.js
├── baz.js
├── somethingElse.txt
└── styles.css
contents-loader!./abc/
generates code like:
import * as _0 from "./abc/foo.js";
import * as _1 from "./abc/bar.js";
import * as _2 from "./abc/baz.js";
export default { "foo.js": _0, "bar.js": _1, "baz.js": _2 };
If you're using vanilla Webpack, this loader has little advantage over the built-in require.context('./abc', false, /\.js$/)
. If, however, you're using webpack-rollup-loader
or similar, require.context
will only be processed by Webpack, resulting in suboptimal code generation.
npm install --save-dev contents-loader
// trailing slash is important
import modules from 'contents-loader!./path/to/directory/';
// use the `match` option to specify which files to import
// (defaults to `/\.js$/i`)
import images from 'contents-loader?match=\\.png$!./path/to/images/';
FAQs
Webpack loader to import the contents of a directory.
We found that contents-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.