git commit规范
摘要:git commit 规范 'feat', // 新功能 feature 'fix', // 修复 bug 'docs', // 文档注释 'style', // 代码格式(不影响代码运行的变动) 'refactor', // 重构(既不增加新功能,也不是修复bug) 'perf', // 性能优化
阅读全文
posted @
2022-08-03 11:32
苏荷酒吧
阅读(13)
推荐(0) 编辑
VSCode配置项
摘要:VSCode配置项 1,jsconfig.json { "compilerOptions": { "target": "es6", "allowSyntheticDefaultImports": false, "baseUrl": "./", "paths": { "@/*": ["src/*"]
阅读全文
posted @
2021-11-17 09:51
苏荷酒吧
阅读(43)
推荐(0) 编辑
Git远程仓库
摘要:安装git https://git-scm.com/downloads 创建SSH Key ssh-keygen -t rsa -C "youremail@example.com" 在用户目录里面找到.ssh,里面有id_rsa和id_rsa.pub两个文件,这2个文件就是SHH Key的密钥对 g
阅读全文
前端技术栈
摘要:JS JS基础 JS高级-ES6 JS高级-异步 JS高级-虚拟DOM axios koa-passport实现本地验证 Koa2 Mongoose Mock NodeJS-基础 NodeJS-静态服务器 React基础概念 React高级指引 React 基础语法 React Redux Reac
阅读全文
posted @
2019-03-31 23:31
苏荷酒吧
阅读(441)
推荐(0) 编辑
安装开发工具
摘要:工具 nodejs VSCode Subline git cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org yarn VSCode 安装汉化插件 chinese 快捷键 ctrl+c复制 ctrl+v黏贴 ctrl
阅读全文
posted @
2019-03-10 20:26
苏荷酒吧
阅读(178)
推荐(0) 编辑