大家好,又见面了,我是你们的朋友全栈君。
node -v
,能显示版本号,说明 node 已经装好了npm -v
,能显示版本号,说明 npm 可以使用了点击链接查看图文教程 https://blog.csdn.net/qq_45677671/article/details/114535955
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm -v
,能显示版本号,说明 cnpm 已经装好了win7 无需配置
属性
,选择兼容性
,勾选以管理员身份运行此程序
,最后点击确定
get-ExecutionPolicy
set-ExecutionPolicy RemoteSigned
get-ExecutionPolicy
Restricted
:表示禁止终端使用命令的RemoteSigned
:表示可以使用终端命令了
npm install -g create-react-app
react
: react的顶级库react-dom
: react在web段的运行环境react-scripts
: 包含运行和打包react应用程序的所有脚本及配置www
cd
指令跳转到这个文件夹create-react-app your-app
(your-app是项目名,可以自己取)Success! Created your-app at /dir/your-app
Inside that directory, you can run several commands:
npm start
Starts the development server.
npm run build
Bundles the app into static files for production.
npm test
Starts the test runner.
npm run eject
Removes this tool and copies build dependencies, configuration files
and scripts into the app directory. If you do this, you can’t go back!
We suggest that you begin by typing:
cd your-app
npm start
Happy hacking!
cd your-app
命令进入目录npm start
即可运行项目├── README.md 使用方法的文档
├── node_modules 所有的依赖安装的目录
├── package-lock.json 锁定安装时的包的版本号,保证团队的依赖能保证一致。
├── package.json
├── public 静态公共目录
└── src 开发用的源代码目录
点击跳转:https://blog.csdn.net/qq_45677671/article/details/115874685
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/128685.html原文链接:https://javaforall.cn