All Projects → Auxpack → Auxpack

Auxpack / Auxpack

Licence: mit
A dashboard for monitoring Webpack build stats.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Auxpack

Webpack Core Usage
webpack2完整系列课程,欢迎阅读。同时欢迎移步我的react全家桶文章全集: https://github.com/liangklfangl/react-article-bucket
Stars: ✭ 94 (+9.3%)
Mutual labels:  webpack, webpack-plugin, webpack-configuration
Webpack.js.org
Repository for webpack documentation and more!
Stars: ✭ 2,049 (+2282.56%)
Mutual labels:  webpack, webpack-plugin, bundler
Baumeister
👷 The aim of this project is to help you to build your things. From Bootstrap themes over static websites to single page applications.
Stars: ✭ 171 (+98.84%)
Mutual labels:  webpack, build, webpack-configuration
Snackui
SnackUI 🍑 - the final React style library. With an *optimizing compiler* that lets you write views naturally, with easier DX, working on native and web at once, all while being faster than hand-rolling your own CSS.
Stars: ✭ 55 (-36.05%)
Mutual labels:  webpack, webpack-plugin
Node Env Webpack Plugin
Simplified `NODE_ENV` handling with webpack
Stars: ✭ 51 (-40.7%)
Mutual labels:  webpack, webpack-plugin
Express React Hmr Boilerplate
A boilerplate for scaffolding production-ready MERN stack projects.
Stars: ✭ 51 (-40.7%)
Mutual labels:  webpack, expressjs
Dotenv Webpack
A secure webpack plugin that supports dotenv and other environment variables and only exposes what you choose and use.
Stars: ✭ 1,022 (+1088.37%)
Mutual labels:  webpack, webpack-plugin
Starter React Flux
Generate your React PWA project with TypeScript or JavaScript
Stars: ✭ 65 (-24.42%)
Mutual labels:  webpack, material-ui
Node Express Typescript Boilerplate
A boilerplate for developing web apps with Node.js, Express.js & TypeScript. Demonstrates helpful recipes in 8 steps in individual branches.
Stars: ✭ 60 (-30.23%)
Mutual labels:  webpack, expressjs
Vscode Ts Webpack Node Debug Example
VSCode TypeScript Webpack Node Debug Example
Stars: ✭ 66 (-23.26%)
Mutual labels:  webpack, webpack-configuration
Serverless Plugin Webpack
Serverless Plugin Webpack
Stars: ✭ 72 (-16.28%)
Mutual labels:  webpack, optimization
React Express Webpack
React boilerplate with ES2015, Express.js, and Webpack 4
Stars: ✭ 84 (-2.33%)
Mutual labels:  expressjs, material-ui
Html Inline Css Webpack Plugin
☄️ A webpack plugin for convert external stylesheet to the embedded stylesheet
Stars: ✭ 48 (-44.19%)
Mutual labels:  webpack, webpack-plugin
Add Asset Webpack Plugin
Dynamically add an asset to the Webpack graph
Stars: ✭ 84 (-2.33%)
Mutual labels:  webpack, webpack-plugin
Webpack Webextension Plugin
Webpack plugin that compiles WebExtension manifest.json files and adds smart auto reload
Stars: ✭ 47 (-45.35%)
Mutual labels:  webpack, webpack-plugin
Vue D3 Workshop
Workshop content material and excercises for Suncoast Developers
Stars: ✭ 63 (-26.74%)
Mutual labels:  webpack, d3
Angular Cli Webpack
Webpack configuration modifier for @angular/cli
Stars: ✭ 72 (-16.28%)
Mutual labels:  webpack, webpack-configuration
Esbuild Loader
⚡️ Speed up your Webpack build with esbuild
Stars: ✭ 1,245 (+1347.67%)
Mutual labels:  webpack, optimization
Page Builder
自定义页面构建平台
Stars: ✭ 81 (-5.81%)
Mutual labels:  webpack, webpack-plugin
Webpack Aliyun Oss
一个webpack(version >= 4)插件,上传资源到阿里云oss。可以作为webpack插件使用,也可独立使用
Stars: ✭ 36 (-58.14%)
Mutual labels:  webpack, webpack-plugin

中文

auxpack

GitHub license npm GitHub issues GitHub forks npm

auxpack is the new configurable Webpack plugin that monitors statistics from your production builds. Our interactive interface allows developers to better understand bundle composition to get a better grasp on optimization strategies.

http://auxpack.com

Installation

Install via npm i -D auxpack

Setup

// webpack.config.js

const Auxpack = require('auxpack'); // import auxpack

modules.exports = [
// other configurations
  ... 
  plugins: [
    ...
    new Auxpack(  // add Auxpack into plugins
      {
        PORT: 1111, // configurable PORT
        targetFile: 'aux-stats', // configurable output filename
        logMe: true, // configure with true to console.log the current build's aux-stats
      }
    ),
  ]
  ...
]

Usage

By installing the plugin into your Webpack configuration, you can run webpack within your scripts as you would in production bundling, and our plugin will launch on port 1111. (or your chosen port in webpack.config.js)

Please note that collecting information on your first auxpack build may take a moment; this occurs due to our plugin collecting data.

Contributing

To contribute to auxpack, please fork this repository, clone it to your machine, then install dependencies with npm install auxpack or yarn add auxpack. If you're interested in joining the auxpack team as a contributor, feel free to message one of us directly!

Authors

webpack-monitor

Many thanks to Webpack Monitor for passing the torch. https://github.com/webpackmonitor/webpackmonitor

License

This project is licensed under the MIT license - see the LICENSE.md file for details

中文翻译

auxpack是可配置的Webpack插件,用于监视生产版本中的统计信息。 我们的应用程序使开发人员可以更好地了解打包组成,从而更好地掌握优化策略。

安装方式

npm i -D auxpack

设定

在webpack.config.js里:

// webpack.config.js
const Auxpack = require('auxpack'); // <--- 引入auxpack
modules.exports = [
// other configurations
  ... 
  plugins: [
    ...
    new Auxpack(  // 向 plugins 属性传入 new 实例
      {
        PORT: 1111, 
        targetFile: 'aux-stats', // configurable output filename
        logMe: true, // configure with true to console.log the current build's aux-stats
      }
    ),
  ]
  ...
]

用法

webpack运行后我们的插件会在1111端口里运行。

贡献

请fork这个资源库, 把仓库克隆在您的计算机上创建本地副本,然后用npm install auxpackyarn add auxpack 下载依赖。如果您想加入我们的团队,请直接发讯息给我们。

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].