react ve what does it mean

藏色散人
Release: 2022-12-30 11:35:13
Original
2272 people have browsed it

react ve is a scaffolding that can quickly build a react development environment. Its usage is: 1. Install "react-ve" through "npm install react-ve -g react-ve init [projectName]"; 2. Start the project through "npm run dll npm start".

react ve what does it mean

#The operating environment of this tutorial: Windows 10 system, react-ve version 0.1.12, Dell G3 computer.

What does react ve mean?

react-ve

A scaffolding that allows you to quickly build a react development environment

Optimization items

  • Code uglification Compression

  • Code-splitting template uses routing-based dynamic import

  • Use DLL to encapsulate the common dependent library module into an independent File

Installation and use

npm install react-ve -g
react-ve init [projectName]
Copy after login

Start the project

cd [projectName]
yarn 或 npm install
npm run dll
npm start
Copy after login

Enter: localhost:3000 in the browser address bar to access

To package the project, just run npm run build. The project will be packaged into the dist folder.

The default technology stack is used:

react
typescript
antd
styled-components
react-router-dom
immutable
Copy after login

You can install or uninstall them according to your preference.

Recommendation:

Use less for project public styles (including antd, frame, and decorative pages), and styled-components for page-level styles to prevent style pollution.

DLL:

In webpack.dll.config.babel.js, the default packaged public packages include:

entry: {
    vendor: ['react', 'react-dom', 'antd', 'react-router-dom', 'immutable']
  }
Copy after login

You can delete it according to your own preferences.

Recommended learning: "react video tutorial"

The above is the detailed content of react ve what does it mean. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!