New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

honeypack

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

honeypack

honeypack is a combination of webpack-dev-server and webpack-dev-middleware, which provides full featured and scalable configuration to bundle assets

  • 0.3.4
  • npm
  • Socket score

Version published
Weekly downloads
8
decreased by-68%
Maintainers
1
Weekly downloads
 
Created
Source

Honeypack

Honeypack is a combination of webpack-dev-server and webpack-dev-middleware, which provides full featured and scalable configuration to bundle assets.

Install

npm i honeypack --save [-g]

With -g, honeypack will be installed globally.

Usage

CLI (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]
Start as a dev server
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
Build the app for production
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

Middleware (locally)

// config.js

middleware: {
  hoenypack: {
    enable: true,
    module: 'hoenypack',
    config: {
      root: './assets'
    }
  }
}
  • config

    • root: relative path to assets directory

App's webpack config

Honeypack will automaticly merge app's webpack config if there is a webpack.config.js in your project into default webpack config.

  • path to webpack.config.js
    • Cli mode: current working directory
    • Middleware mode: assets directory

example

// 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.

Bundle Analysis

Install

npm install --save-dev webpack-bundle-analyzer

Usage

// webpack.config.js

const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;

module.exports = {
  plugins: [
    new BundleAnalyzerPlugin()
  ]
};

Run as usual

Webpack Bundle Analyzer will start at http://127.0.0.1:8888

FAQs

Package last updated on 26 Jul 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc