上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 安装PM2: cnpm install pm2@latest -g 或 tyarn global add pm2 启动项目: pm2 start app.js 或 pm2 start bashscript.sh 或 pm2 start python-app.py --watch 或 pm2 star 阅读全文
posted @ 2021-03-27 16:44 starlog 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 在项目根目录 安装npm-check-updates: cnpm i -g npm-check-updates 检查更新: ncu 执行更新(修改package.json): ncu -u 根据package.json更新模块: cnpm i 阅读全文
posted @ 2021-03-27 16:28 starlog 阅读(872) 评论(0) 推荐(0) 编辑
摘要: 在项目根目录: cnpm install --save-dev babel-plugin-import less less-loader@5.0.0 style-loader css-loader 打开项目根目录的config-overrides.js, 把 const { override, fi 阅读全文
posted @ 2021-03-14 16:50 starlog 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 打开设置标签页: 点击左下角的齿轮按钮,点击“设置” 在设置标签页顶部的搜索框输入: includeLanguages 点击搜索结果底部的“添加项”,输入键和值: 键: javascript 值: javascriptreact 点击“确定” 阅读全文
posted @ 2021-03-14 13:35 starlog 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 一、修改标签页图标: 在项目根目录打开cmd 使用vscode打开项目根目录public文件夹下的index.html: code public/index.html 把 <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> 改为 <link rel 阅读全文
posted @ 2021-03-14 11:33 starlog 阅读(3793) 评论(0) 推荐(0) 编辑
摘要: 安装React-router: cnpm i react-router-dom --save 一、最基本示例: 在src目录下有index.js、app.js,再新建index.redux.js,分别修改这几个文件的内容如下: index.js: import React from 'react'; 阅读全文
posted @ 2021-03-10 21:36 starlog 阅读(604) 评论(0) 推荐(0) 编辑
摘要: 安装Redux: cnpm i redux --save 一、手动连接Redux处理同步,示例: 在src目录下有index.js、app.js,再新建index.redux.js,分别修改这几个文件的内容如下: index.js: import React from 'react'; import 阅读全文
posted @ 2021-03-08 23:37 starlog 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 在项目根目录: cnpm install antd-mobile --savecnpm install react-app-rewired customize-cra --save-devcnpm install babel-plugin-import --save-devcnpm install 阅读全文
posted @ 2021-03-08 00:30 starlog 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 一、类组件的生命周期: https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/ 二、在函数组件中使用Hook函数时,Hook函数与类组件生命周期函数的对应关系: useState相当于constructor或类属性,用来初始化st 阅读全文
posted @ 2021-03-07 22:33 starlog 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 下载并安装MongoDB,在Choose Setup Type界面选择Complete,在Install Mongodb Compass界面取消勾选Install Mongodb Compass,其他使用默认设置(Windows): https://www.mongodb.com/try/downl 阅读全文
posted @ 2021-03-07 16:58 starlog 阅读(140) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页