Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webpack 入门二:安装 #36

Open
felix-cao opened this issue Sep 4, 2018 · 0 comments
Open

Webpack 入门二:安装 #36

felix-cao opened this issue Sep 4, 2018 · 0 comments

Comments

@felix-cao
Copy link
Owner

felix-cao commented Sep 4, 2018

首先要安装 Node.jsNode.js 自带了软件包管理器 npm,建议使用最新版 Node.js。也可以使用 nvm 来管理你的 node 版本

Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。
Node.js 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。
Node.js 的包管理器 npm,是全球最大的开源库生态系统。

一、全局安装

npm 安装 Webpack

$ npm install webpack -g

此时 Webpack 已经安装到了全局环境下,可以通过命令行 webpack -h 试试。

二、依赖安装

通常我们会将 Webpack 安装到项目的依赖中,这样就可以使用项目本地版本的 Webpack

  • 进入项目目录
  • 确定已经有 package.json,没有就通过 npm init 创建
  • 安装 webpack 依赖
$ npm install webpack --save-dev

Webpack 目前有两个主版本,一个是在 master 主干的稳定版,一个是在 webpack-2 分支的测试版,测试版拥有一些实验性功能并且和稳定版不兼容,在正式项目中应该使用稳定版。

# 查看 webpack 版本信息
$ npm info webpack

# 安装指定版本的 webpack
$ npm install [email protected] --save-dev

如果需要使用 Webpack server 开发工具,要单独安装:

$ npm install webpack-dev-server --save-dev
Reference
@felix-cao felix-cao changed the title Webpack入门二:安装 Webpack 入门二:安装 Dec 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant