Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 914 Bytes

README.md

File metadata and controls

54 lines (35 loc) · 914 Bytes

1️⃣ Instructions from scratch :

npm i --save express webpack react react-dom

npm i --save-dev babel-loader babel-core babel-preset-react babel-preset-es2015

npm i nodemon -g

2️⃣ Webpack Configuration

🔹 webpack.config.js 🔹

module.exports = {
    entry: './js/app.js',

    output: {
        path: './public',
       filename: 'bundle.js',
    },

 module: {

   loaders: [
    {
      test: /\.js$/,
      exclude: /(node_modules|bower_components)/,
      loader: 'babel', // 'babel-loader' is also a legal name to reference
      query: {
        presets: ['react','es2015']
      }
    }
  ]
 }
}

3️⃣ Running

Terminal 1

nodemon

Terminal 2

webpack -w -d

ℹ️

-w : watch for changes

-d : map files for debugging