
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
component-resolver-webpack
Advanced tools
Webpack plugin that simplifies process of components loading
Webpack plugin that provides simple convention on how to organize components:
The component file should be placed in a directory named as component itself e.g
button.jsxmust be placed insidebuttondirectorty:button/button.jsx.
It allows to shorten require calls and make them more expressive:
var Button = require('ui/button');
// instead of:
var Button = require('ui/button/button.jsx');
Why not 'ui/button.jsx'?
Because then you can use directories as module containers. As an example, you can
combine component-resolver-webpack with
component-css-loader:
var Button = require('ui/button');
// Single `require` to get React component and style associated with it.
require('ui/button/button.styl');
var Button = require('ui/button/button.jsx');
Directory also may contain tests (Jest-like approach).
Install via npm:
npm install --save-dev component-resolver-webpack
Update webpack config (default: webpack.config.js):
var webpack = require('webpack');
var ComponentResolverPlugin = require('component-resolver-webpack');
module.exports = {
plugins: [
new webpack.ResolverPlugin([
new ComponentResolverPlugin(
// array of extensions e.g `['js']` (default: `['jsx', 'js']`)
)
])
]
};
You also may want to specify modulesDirectories in webpack config:
// ...
module.exports = {
// ...
resolve: {
modulesDirectories: [
// It will allow to use path without leading `./` in require
// for directories placed in `app`:
'app'
]
}
}
npm test
For watch mode:
npm run-script autotest
node_modules)--
FAQs
Webpack plugin that simplifies process of components loading
We found that component-resolver-webpack 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
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.