
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
honeypack is a combination of webpack-dev-server and webpack-dev-middleware, which provides full featured and scalable configuration to bundle assets
Honeypack is a combination of webpack-dev-server and webpack-dev-middleware, which provides full featured and scalable configuration to bundle assets.
npm i honeypack --save [-g]
With -g, honeypack will be installed globally.
hoenypack
>
Usage: honeypack [options] [command]
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
start Start a dev server
build Build the app for production
help [cmd] display help for [cmd]
hoenypack start
>
Usage: honeypack-start [options]
Options:
-p, --port [port] Specify a port number to listen on
-c, --config [config] Path to the app config file, default is webpack.config.js
-h, --help output usage information
hoenypack build
>
Usage: honeypack-build [options]
Options:
-c, --config [config] Path to the app config file, default is webpack.config.js
-h, --help output usage information
// config.js
middleware: {
hoenypack: {
enable: true,
module: 'hoenypack',
config: {
root: './assets'
}
}
}
config
root: relative path to assets directoryHoneypack will automaticly merge app's webpack config if there is a webpack.config.js in your project into default webpack config.
webpack.config.js
// webpack.config.js
module.exports = {
entry: {
},
output: {
},
module: {
rules: [
/* default rules
test: /\.css$/
test: /\.less$/
test: /\.(png|svg|jpg|gif)$/
test: /\.(woff|woff2|eot|ttf|otf)$/
test: /\.(js|jsx)$/
*/
// we will merge loaders based on test
]
},
plugins: [
],
unPlugins: [
// string, a plugin to remove, e.g. 'UglifyJsPlugin'
]
};
Learn more about webpack config here.
npm install --save-dev webpack-bundle-analyzer
// webpack.config.js
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
plugins: [
new BundleAnalyzerPlugin()
]
};
Webpack Bundle Analyzer will start at http://127.0.0.1:8888
FAQs
honeypack is a combination of webpack-dev-server and webpack-dev-middleware, which provides full featured and scalable configuration to bundle assets
We found that oj-pack 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.