react

Posted zealousness

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react相关的知识,希望对你有一定的参考价值。

1、安装

安装react

sudo npm install -g create-react-app

试着生成一个react的项目

create-react-app zss

会提示缺少node

sudo apt-get install nodejs

apt的node默认版本过低,需要安装8.x以上(使用sudo apt-get install nodejs=9.11.2无效)

curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs

 

2、创建webpack项目

node9 安装好之后,执行创建webpack项目的命令

cerate-react-app zss

 

create-react-app命令执行完成之后,会产生如下提示

技术图片

 

按照提示,执行npm start可以执行该项目,运行web服务。

 

以上是关于react的主要内容,如果未能解决你的问题,请参考以下文章

Spring boot:thymeleaf 没有正确渲染片段

What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

Spring Rest 文档。片段生成时 UTF-8 中间字节无效 [重复]

解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段

一张图帮你记忆,Spring Boot 应用在启动阶段执行代码的几种方式