Skip to content

ziqiangy/webpack_react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cd Desktop
mkdir react-webpack
cd react-webpack
code .

#init and install webpack
yarn init -y
yarn add webpack webpack-cli webpack-dev-server -D

touch webpack.config.js

in webpack.config.js

const path = require('path')

module.exports = {
    entry:{
        app:path.join(__dirname, './src/index.js')
    },
    output:{
        filename: 'boundle.js',
        path: path.join(__dirname, 'dist')
    }
}

create src/index.html, src/index.js

in index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div id="root"></div>
</body>
</html>

in src/index.js

import React from 'react'
import ReactDOM from 'react-dom'
import App from './App.js'

ReactDOM.render(<App />, document.getElementById('root'))

yarn add react react-dom -D

create src/app.js

import React from 'react'

export default class App extends React.Component {
    render(){
        return(
            <div>
            <h1>Hello React!!</h1>
        </div>
        )
        
    }
}

add scripts to the package.json

the package.json looks like this

{
  "name": "react-webpack",
  "version": "1.0.0",
  "main": "index.js",
  "license": "MIT",
  "scripts": {
    "build": "webpack"
  },
  "devDependencies": {
    "webpack": "^5.9.0",
    "webpack-cli": "^4.2.0",
    "webpack-dev-server": "^3.11.0"
  }
}

run yarn build throw error, because no loader installed

install loader

yarn add @babel/core @babel/preset-env @babel/preset-react -D

in webpack.config.js add

module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                use: ['babel-loader']
            },
        ]
    }

create src/.babelrc

{
    "presets":["@babel/preset-env","@babel/preset-react"]
}

yarn add babel-loader -D

we got everything we need to run npm run build

should work

to exclude node_modules

module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: path.join(__dirname, 'node_modules'),
                use: ['babel-loader']
            },
        ]
    }
mode: 'development',

faster!

we also want to boundle index.html

yarn add html-webpack-plugin

const HtmlPlugin = require('html-webpack-plugin')
plugin: [
        new HtmlPlugin({
            filename: 'index.html',
            template: path.join(__dirname, 'src/index.html')
        })
    ]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published