webpack-cli

Webpack's Command Line Interface
授权协议 MIT License
开发语言 JavaScript
所属分类 应用工具、 终端/远程登录
软件类型 开源软件
地区 不详
投 递 者 袁文景
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

webpack CLI

The official CLI of webpack


Build Status

Table of Contents

About

webpack CLI provides the interface of options webpack uses in its configuration file. The CLI options override options passed in the configuration file.

The CLI provides a rich set of commands that helps you develop your application faster.

How to install

When you have followed the Getting Started guide of webpack then webpack CLI is already installed!

Otherwise npm install --save-dev webpack-cli or yarn add webpack-cli --dev will install it.

Supported arguments and commands

Get to know what are the available commands and arguments here.

Packages

We organize webpack CLI as a multi-package repository using lerna. The main CLI logic resides in packages/webpack-cli, while commands supported by the CLI, has dedicated subfolders in the folder packages. A summary of supported commands is described below.

Commands

Supporting developers is an important task for webpack CLI.Thus, webpack CLI provides different commands for many common tasks.

Utilities

The project has several utility packages which are used by other commands

  • generators - Contains all webpack-cli related yeoman generators.

Getting started

When you have followed the Getting Started guide of webpack, then webpack CLI is already installed!

Otherwise, you would need to install webpack CLI and the packages you want to use. If you want to use the init command to create a new configuration file:

npm i webpack-cli @webpack-cli/init
npx webpack-cli init

You will be prompted for some questions about which features you want to use, such as scss, PWA support or multiple entry-points.

Exit codes and their meanings

Exit Code Description
0 Success
1 Errors from webpack
2 Configuration/options problem or an internal error

Contributing and Internal Documentation

The webpack family welcomes any contributor, small or big. We are happy to elaborate, guide you through the source code and find issues you might want to work on! To get started have a look at our contribution documentation.

Open Collective

If you like webpack, please consider donating to our Open Collective to help us maintain it.

Code of Conduct

Guidelines to how the webpack organization expects you to behave is documented under Code of Conduct

  • 在webpack 3中,webpack本身和它的CLI以前都是在同一个包中,但在第4版中,他们已经将两者分开来更好地管理它们。 ebpack 是一个静态的模块化打包工具,为现代的JavaScript应用程序服务 打包 bundler:webpack可以帮助我们进行打包,所以它是一个打包工具 静态的static:将代码打包成最终的静态资源(部署到静态服务器) 模块化module:webpack默认支

  • 1、安装和配置webpack npm install -g @vue/cli 2、基于3.x版本的脚手架创建vue项目 // 1. 基于 交互式命令行 的方式,创建 新版 vue 项目 vue create my-project // 2. 基于 图形化界面 的方式,创建 新版 vue 项目 vue ui // 3. 基于 2.x 的旧模板,创建 旧版 vue 项目 npm install -g

  • webpack 4.41.5 webpack-cli 3.3.10 webpack-dev-server 3.10.1 可用 如果之前安装了,先卸载 npm uninstall webpack -g npm uninstall webpack-cli -g npm uninstall webpack-dev-server -g 安装cnmp npm install -g cnpm --regist

  • 关于配置package.json的配置 { "name": "03-webpack-test", "version": "1.0.0", "main": "index.js", "license": "MIT", "scripts": { "build": "cross-env NODE_ENV=production webpack", "serve": "cr

  • 初识webpack 1.webpack是什么? webpack是一个模块打包工具,推出之初是专为js打包而设计,随着前端的发展和技术的更新,webpack的功能也越来越完善,现在已经发展为可识别任何引入模块。 2.什么是webpack-cli? webpack的安装和运行都是通过命令来实现,而webpack-cli就相当于一个管家,对webpack的命令进行管理和检查,只有webpack-cli识

 相关资料
  • 更改历史 * 2017-11-12 王莹 webpack内容更新 第一章 webpack介绍 1.1 概述 Webpack 是当下最热门的前端资源模块化管理和打包工具。它可以将许多松散的模块按照依赖和规则打包成符合生产环境部署的前端资源。还可以将按需加载的模块进行代码分隔,等到实际需要的时候再异步加载。通过 loader 的转换,任何形式的资源都可以视作模块,比如 CommonJs

  • art-template loader for webpack. Install npm install art-template npm install art-template-loader --save-dev Usage By default every local <img src="image.png"> is required (require('./image.png')).

  • Webpack 是一个模块打包器,主要目的是在浏览器上打包 JavaScript 文件。 TL;DR 捆绑 ES 模块、CommonJS 和 AMD 模块(以及绑定)。 可以创建在运行时异步加载的单个捆绑包或多个块(以减少初始加载时间)。 在编译过程中解决了依赖性,从而减小了运行时大小。 加载程序可以在编译时对文件进行预处理,例如,将 TypeScript 转换为 JavaScript、将Hand

  • 问题内容: 我开始在开发使用的服务器端渲染应用程序的环境中工作。我对每个Webpack包在开发和生产(运行时)环境中的作用感到非常困惑。 这是我的理解摘要: :是一个软件包,是一种工具,用于将Web应用程序的不同部分结合在一起,然后捆绑成一个.js文件(通常是)。然后,结果文件将在产品环境中提供以由应用程序加载,并包含运行代码的所有必需组件。功能包括缩小代码,缩小代码等。 :是一个提供 服务器 以

  • 本文向大家介绍webpack Webpack简单示例,包括了webpack Webpack简单示例的使用技巧和注意事项,需要的朋友参考一下 示例 使用Webpack的最低要求是以下命令: Web pack将获取源文件,编译到输出目标并解决源文件中的所有依赖关系。

  • 原文地址:https://cesiumjs.org/tutorials/cesium-and-webpack/ Cesium 和 Webpack Webpack是非常强大非常流行的JavaScript 模块打包工具。它可以让开发人员以一种简单直观的 require 方式去加载各种页面需要的文件,极大的方便了开源人员对代码和资源文件进行结构化设计。当编译的时候,它会跟踪代码依赖性,把所有的模型打包到

  • 我开始工作与与环境开发一个服务器端渲染应用程序与。我对每个webpack包在dev和prod(运行时)环境中的作用感到非常困惑。 以下是我理解的总结: :是一个包,一个工具,用于将web应用程序的不同部分连接在一起,然后捆绑在一个单独的包中。js文件(通常是)。然后,结果文件在prod环境中提供,由应用程序加载,并包含运行代码所需的所有组件。功能包括缩小代码、缩小尺寸等。 :是一个提供服务器来处理

  • 在需要/导入模块时,可以内联配置装载程序: 加载器通过使用字符来分隔模块引用和将要运行的加载器。可以使用多个加载器,并且它们以同样用!分开。装载机从右到左执行。 在以这种方式配置加载器时要小心 - 它将应用程序不同阶段的实现细节结合在一起,因此在许多情况下可能不是正确的选择。 Webpack 配置 首选方法是通过webpack.config.js文件配置装载程序。例如,TypeScript加载器任