This project was bootstrapped with Create React App.
node -v
npm -v
If you don't have Node installed, you can download it from Nodejs.org. If you don't have npm installed, you can download it from Npmjs.org.
npm install -g cnpm --registry=https://registry.npmmirror.com
npm config set registry https://registry.npmmirror.com
If you have a global installation of create-react-app, you can use it to create new projects
This will create a new react app in the directory my-app
sass is a stylesheet language that’s compiled to CSS. It allows you to use variables, nested rules, mixins, functions, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized and makes it easy to share design within and across projects.
antd is UI library that contains a set of high quality components and demos for building rich, interactive user interfaces.
react-router-dom is a routing library for React that allows you to declaratively define your routes and handle navigation within your application.
craco customize your configurations ESLint, Babel, PostCSS, and many more with just a single configuration file at the root of your project.
- you need create a file named
craco.config.js
in the root of your project// https://craco.js.org/docs/getting-started/ const path = require('path') module.exports = { webpack: { alias: { '@': path.resolve(__dirname, 'src') } } }
- if you use VSCode IDE, you can create file
jsconfig.json
that lets IDE implement the automatic association function after the@
symbol{ "compilerOptions": { "baseUrl": "./", "paths": { "@/*": [ "src/*" ] } } }
axios is a simple promise based HTTP client for the browser and node.js.
redux a JS library for predictable and maintainable global state management.
normalize.css is a small CSS file that provides better cross-browser consistency in the default styling of HTML elements.
react-quill is a React component for Quill rich text editor.
source-map-explorer is a tool that helps you analyze the size of your JavaScript bundles.
dotenv is a zero-dependency module that loads environment variables from a .env file into process.env.
dotenv-cli is a tool for managing environment variables.
https://ant.design/docs/react/recommendation-cn
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
serve is a command-line utility that allows you to quickly serve a static directory over HTTP.
Serve the production build.
Note: this is a one-way operation. Once you eject
, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify