Giter VIP home page Giter VIP logo

honeypack's Introduction

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

honeypack's People

Contributors

hqidea avatar baqian avatar

Watchers

James Yang avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.