Giter VIP home page Giter VIP logo

es6-tutorial-react's Introduction

Setting Up a React Project

This is a fork of the sample project used in Setting Up a React Project tutorial. I had been following this great tutorial to get started with React and following are the changes I had to make to get the project running with webpack 4.

Step 2: Set Up Babel and Webpack

  1. Type the following command to install the babel and webpack modules:
npm install babel-core babel-loader webpack --save-dev

In webpack 4 webpack-cli is a separate package and needs to be installed additionally. Add it to the above install command or install it separately.

npm install babel-core babel-loader webpack webpack-cli --save-dev
  1. Type the following command to install the ECMAScript 2015 and React presets:
npm install babel-preset-es2015 babel-preset-react --save-dev

babel-preset-es2015 is deprecated, use babel-preset-env instead.

  1. In the es6-tutorial-react directory, create a new file named webpack.config.js defined as follows:

module.loaders are no longer allowed in webpack, module.rules should be used. The updated webpack.config.js file is as follows:

var path = require('path');
module.exports = {
    entry: './js/app.js',
    output: {
        path: path.resolve(__dirname, 'build'),
        filename: 'app.bundle.js'
    },
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                use: {
                    loader: "babel-loader",
                    query: {
                        presets: ['env', 'react']
                    }
                }
            }
        ]
    }
};

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.