![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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.
The npm package honeypack receives a total of 5 weekly downloads. As such, honeypack popularity was classified as not popular.
We found that honeypack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.