上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: 官方文档 安装 yarn add --dev jest DEMO 下面我们开始给一个假定的函数写测试,这个函数的功能是两数相加。首先创建 sum.js 文件: function sum(a, b) { return a + b; } module.exports = sum; Copy 接下来,创建 阅读全文
posted @ 2022-03-11 11:03 __Bowen 阅读(271) 评论(0) 推荐(0) 编辑
摘要: Express 应用程序生成器 官方地址 npx express-generator --git -view=ejs myapp cd myapp npm install npm start 项目完善 CORS app.js //设置CORS app.all('*',function (req, r 阅读全文
posted @ 2022-03-11 11:02 __Bowen 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 官方教程 安装 npm install --save @antv/g6 使用 vue 作为模板 步骤 <template> <v-container> <!--步骤.1 容器 --> <div id="mountNode"></div> </v-container> </template> <scr 阅读全文
posted @ 2022-03-11 11:01 __Bowen 阅读(8460) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://juejin.cn/post/7038550916106027044 commit message 应该清晰明了,说明本次提交的目的,但是很多人在提交 git 信息的时候,为了图方便,大多都会简单的写一下,开发一时爽,维护火葬场。 清晰且统一的提交风格,有利于团队的协作和后期 阅读全文
posted @ 2022-02-24 13:55 __Bowen 阅读(709) 评论(0) 推荐(0) 编辑
摘要: Vue更新数据流程流程 Compiler 解析模板成虚拟dom ( render 函数 createElement 就是直接生成虚拟dom ) Observer 发现数据改变 通知 Watcher Watcher 通知 Compiler 重新解析模板成虚拟dom diff 虚拟 dom 对改变的部分 阅读全文
posted @ 2022-02-24 13:53 __Bowen 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 安装 docker安装 sudo docker run --detach \ --hostname gitlab.example.com \ --publish 8443:443 --publish 8081:80 --publish 10022:22 \ --name gitlab \ --res 阅读全文
posted @ 2022-02-24 13:50 __Bowen 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 官方网站 eslint 官网 eslint-plugin-prettier 官网 lint-staged 官网 prettier 官网 安装 npm install eslint --save-dev 配合 prettier 安装 npm install eslint eslint-config-p 阅读全文
posted @ 2022-02-24 13:48 __Bowen 阅读(807) 评论(0) 推荐(0) 编辑
摘要: nginx 老是自动停止 nginx 在通过 Certbot 安装 证书后 发现每隔一段时间 nginx 都会自动停止 找了我 n 久 ,一开始以为是 shell 的问题 ,以为 shell 端口服务就停,试了几回发现不是 查看定时任务 cat /etc/crontab 0 1 * * * root 阅读全文
posted @ 2022-01-05 12:43 __Bowen 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 暂时引用一下别人总结的 回头自己整理下 阅读全文
posted @ 2022-01-05 12:40 __Bowen 阅读(195) 评论(0) 推荐(0) 编辑
摘要: js 函数的防抖(debounce)与节流(throttle) 原文:函数防抖和节流; 序言: 我们在平时开发的时候,会有很多场景会频繁触发事件,比如说搜索框实时发请求,onmousemove, resize, onscroll 等等,有些时候,我们并不能或者不想频繁触发事件,咋办呢?这时候就应该用 阅读全文
posted @ 2022-01-05 12:36 __Bowen 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页