react
Posted twomeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react相关的知识,希望对你有一定的参考价值。
CodePen : CodePen is a social development environment for front-end designers and developers.It’s the best place to build and deploy a website, show off your work, build test cases, and find inspiration.可以看到并修改别人写的前端项目,里面有很酷炫的前端技术。
如何查看react.js所有的历史版本
按照react官方网站上面的文档一步步进行:
1. 运行一个Hello world在本地文件和本地编译器上
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8" /> 5 <title>Hello World</title> 6 <script src="https://unpkg.com/[email protected]/umd/react.development.js"></script> 7 <script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> 8 <script src="https://unpkg.com/[email protected]/babel.min.js"></script> 9 </head> 10 <body> 11 <div id="root"></div> 12 <script type="text/babel"> 13 14 ReactDOM.render( 15 <h1>Hello, world!</h1>, 16 document.getElementById(‘root‘) 17 ); 18 19 </script> 20 </body> 21 </html>
我们可以看到,通过script外部JS文件的引入,包括在CodePen上显示的HelloWorld代码,他的主要“引擎”是javascript,通过其语法将H5的内容展示出来。
- 安装开发环境
使用npm、npx来安装环境,只需要通过终端输入几个简单的命令就可以啦~那么npm和npx究竟是什么呢?
使用npm或者npx在控制台中输入命令即可:
以上是关于react的主要内容,如果未能解决你的问题,请参考以下文章
[React Testing] Use Generated Data in Tests with tests-data-bot to Improve Test Maintainability(代码片段
[react] Module not found: Can't resolve 'schedule' in 'C:Usersadcaldvmtn7myapp (代码片段