zoukankan      html  css  js  c++  java
  • webpack+react 环境

    0,  node+npm 

    1,npm install webpack -g

    2,npm install webpack-dev-server -g

    3,npm install react react-dom --save

    4,npm install jquery --save

    5,npm install babel-core babel-loader babel-preset-es2015 babel-preset-react --save-dev   //es6

    6,npm install url-loader file-loader --save-dev  //img

    7,npm install css-loader style-loader --save-dev //css

     目录:

    webpack.config.js:

    var path = require('path');
    module.exports = {
      entry: path.resolve(__dirname, 'src/app.js'),//源文件目录
      output: {
        path: path.resolve(__dirname, 'build'),//构建目录
        filename: 'bundle.js'
      }
    }



  • 相关阅读:
    linux c++ 实现http请求
    pip 换源
    Web API接口
    DRF框架知识总览
    jq+bs插件
    element-ui插件
    axios插件
    前端存储数据汇总
    Vuex插件
    全局配置css和js
  • 原文地址:https://www.cnblogs.com/uh-huh/p/5894083.html
Copyright © 2011-2022 走看看