# 1.环境配置webpack
~~~
//设置npm的仓库为淘宝
npm config set registry https://registry.npm.taobao.org
//或者安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
~~~
~~~
npm init -y
npm i webpack babel-loader babel-core babel-preset-env --save-dev
npm install html-webpack-plugin --save-dev
npm i webpack-cli -g
~~~
# 2.webpack.config.js
~~~
var htmlWebpackPlugin = require('html-webpack-plugin');
var path = require('path');
module.exports = {
entry : './src/index.js',
output: {
path:__dirname+'/dist',
filename:'js/index.js'
},
plugins:[
new htmlWebpackPlugin({
filename:'index.html',
template:'index.html',
inject:'head'
})
],
module:{
rules:[
{
test:/\.js$/,
use:{loader:'babel-loader'},
exclude: /(node_modules|bower_components)/,
include : path.resolve(__dirname,'src')
}
]
}
}
~~~
# 3.项目目录
![](https://box.kancloud.cn/650aff4b2d54a46c59492a99aaa488b7_386x283.png)
- 将es6转为es5
- 第一节 webpack
- 第二章 基础语法
- 第1节 模块化
- 第2节set和map语法
- 2.1 set
- 第3节 变量
- 第4节 循环of
- 第5节 function
- 第6节 解构赋值
- 1.在对象在函数中的解构
- 第7节 字符串
- 第8节 面向对象
- 8-1 static静态属性,静态方法
- 第9节 JSON对象
- 9-1 Object.keys()
- 第10节 Promise
- 10.1 原理
- 10.2 回调地狱
- 第11节 generator
- 第一节 基本
- 第二节 generator-ajax
- 第12节 yield
- 第13节 asnyc
- 13.1
- 13.2 ajax
- 第14节 array
- 第15节 string方法拓展
- 第三章 webpack的简单配置
- 第四章 高级语法
- 第1节 promise
- a.实例
- b.promise
- 第2节 await,async