Windows:
安装scoop:
PowerShell设置最美界面_CBAiotAigc的博客-CSDN博客windows下的安装源搜索工具,有点类似centos下的yum和Ubuntu下的apt。用这个拉下来安装的软件没有广告。https://wtl4it.blog.csdn.net/article/details/131733200
安装nodejs:
scoop install nodejs
创建react脚手架:
npx create-react-app hello-world
文章来源:https://www.toymoban.com/news/detail-578532.html
代码:文章来源地址https://www.toymoban.com/news/detail-578532.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React-Hello,world</title>
</head>
<body>
<div id="react"></div>
<script type="text/javascript" src="./jss/react.js"></script>
<script type="text/javascript" src="./jss/react-dom.js"></script>
<script type="text/javascript" src="./jss/babel.min.js"></script>
<script type="text/babel">
const VDOM = <h1>hello,react</h1>
ReactDOM.render(VDOM,document.getElementById("react"))
</script>
</body>
</html>
到了这里,关于React初学者需要的库从哪里下载?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!