繁体   English   中英

当 react 应用程序未在 localhost:3000 上加载时,如何设置 webpack 和 babel

[英]How do I set up webpack and babel when react app is not loading on localhost:3000

我已经遵循了几个教程,但似乎都没有用。 我可以配置 webpack、babel 和一些简单的 React 组件,但它们不会在我的 localhost:3000 上呈现。 关于我做错了什么的任何建议,因为终端中没有控制台日志或错误。

package.json

{
  "name": "frontend",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server --mode development",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.11.0",
    "@babel/preset-env": "^7.11.0",
    "@babel/preset-react": "^7.10.4",
    "babel-loader": "^8.1.0",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-hot-loader": "^4.12.21",
    "webpack": "^4.44.1",
    "webpack-cli": "^3.3.12",
    "webpack-dev-server": "^3.11.0"
  }
}

.babelrc

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

webpack.config.js

const webpack = require('webpack');
const path = require('path');


module.exports = {
  devtool: 'inline-source-map',
  entry: './src/index.js',
  output: {
    path: path.resolve(__dirname, 'dist',),
    publicPath: '/',
    filename: 'bundle.js'
  },
  devServer: {
    port: 3000,
    contentBase: './dist',
    hot: true
  },
  module: {
    rules: [
    {
      test: /\.(js|jsx)$/,
      exclude: /node_modules/,
      use: ['babel-loader']
    }
    ]
  },
  resolve: {
    extensions: ['*', '.js', '.jsx']
  },
  plugins: [
    new webpack.HotModuleReplacementPlugin()
  ],
};

index.html

<!DOCTYPE html>
<html>
 <head>
 <title>My React Configuration Setup</title>
 </head>
 <body>
 <div id="root"></div>
 <!-- <script src="./dist/bundle.js"></script> -->
 </body>
</html>

索引.js

import React from "react";
import ReactDOM from "react-dom";
import Welcome from './App'

ReactDOM.render(<Welcome />, document.getElementById("root"));

module.hot.accept();

应用程序.js

import React from 'react';

class Welcome extends React.Component {
  render() {
    return <h1>Hello World from React boilerplate</h1>;
  }
}

export default Welcome

你快到了。

  1. 使用来自package.jsonwebpack命令构建bundle.js ,如下所示
  "scripts": {
    "start": "webpack && webpack-dev-server --mode development",
    "test": "echo \"Error: no test specified\" && exit 1"
  },

要么

  "scripts": {
    "build": "webpack",
    "start": "webpack-dev-server --mode development",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  1. 修改webpack.config.js contentBase属性,因为您的index.html位于根目录(您可以将其移动到dist
  devServer: {
    port: 3000,
    contentBase: './',
    hot: true
  },
  1. 取消注释bundle.jsindex.html导入:
 <div id="root"></div>
    <script src="./dist/bundle.js"></script>
 </body>

你可以使用create-react-app来非常快速地初始化一个空的 React 项目

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM