首页 > 代码库 > Webpack 入门教程1

Webpack 入门教程1

1.创建项目,项目名app

mkdir app

技术分享

2.进入app的目录

cd app

技术分享

3.在项目的根目录下创建runoob1.js文件

echo document.write("It works"); > runoob1.js

技术分享

4.查看该目录下生成的文件

dir

技术分享

5.查看runoob1.js文件中的内容

type runoob1.js

技术分享

6.在项目的根目录下创建index.html文件

echo ... > index.html

技术分享

7.修改index.html文件的内容,内容如下

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title></title>
	<link rel="stylesheet" href="">
</head>
<body>

	<script type="text/javascript" src="http://www.mamicode.com/bundle.js" charset="utf-8"></script>
</body>
</html>

8.查看已修改后的index.html文件的内容

type index.html

技术分享

9.安装webpack

cnpm install webpack

技术分享

10.打包runoob1.js文件为bundle.js

webpack runoob1.js bundle.js

技术分享

11.在浏览器中打开index.html文件,输出内容如下

技术分享

本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1899006

Webpack 入门教程1