搭建基于es6和热加载的前端简单开发环境,适合demo类小项目,这样就不用依赖browsersync等多余的东西
目录结构
- /src
- index.js
- index.html
- /dist
安装依赖
注意版本,尤其是babel,可去babel的npm地址查看,那里不会错
#bebal相关 yarn add babel-core babel-loader babel-preset-env # webpack相关 yarn add webpack webpack-cli webpack-dev-server html-webpack-plugin
package.json
{
"name": "design-pattern",
"version": "1.0.0",
"de ion": "js设计模式的学习深入",
"main": "index.js",
"author": "axin <laputacloud@163.com>",
"license": "MIT",
" s": {
"dev": "webpack-dev-server --config ./webpack.dev.config.js --mode development"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-preset-env": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}
webpack.dev.config.js
const path = require('path')
const htmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry: './src/index.js',
output: {
path: __dirname,
filename: './dist/bundle.js'
},
module: {
rules: [{
test: /\.js?$/,
exclude: /(node_modules)/,
loader: 'babel-loader'
}]
},
plugins: [
new htmlWebpackPlugin({
template: './index.html'
})
],
devServer: {
content : path.join(__dirname, './dist'),
open: true, // 自动打开浏览器
port: 6688, // devServer对应的端口号
}
}
.babelrc 可根据需要配置
{
"presets": ["env"]
}
然后就可以执行npm run dev就可以开启开发环境
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
继续阅读与本文标签相同的文章
上一篇 :
阿里云10月“老产品”新开服大盘点,速览!
下一篇 :
解决docker pull被复位出现的问题
-
阿里云数据库RDS通用型和独享型区别在哪?如何选择?
2026-05-18栏目: 教程
-
如何选购配置云数据库RDS MySQL 的流程 新手必看
2026-05-18栏目: 教程
-
跨境电商女装开发风向标
2026-05-18栏目: 教程
-
线上线下场景全方面打通,小程序成为家居行业的新卖点!
2026-05-18栏目: 教程
-
下载一款手机软件后,为何总是要让我们授权一些,看似毫无关联的权限?
2026-05-18栏目: 教程
