New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

oj-pack

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oj-pack

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

latest
npmnpm
Version
0.1.12
Version published
Maintainers
1
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 11 Nov 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