摘要:
路径是否存在,不存在则创建 const path = require("path"); const fs = require("fs").promises; /** * 路径是否存在,不存在则创建 * @param {string} dir 路径 */ async function dirExist 阅读全文
摘要:
官方文档 安装 yarn add --dev jest DEMO 下面我们开始给一个假定的函数写测试,这个函数的功能是两数相加。首先创建 sum.js 文件: function sum(a, b) { return a + b; } module.exports = sum; Copy 接下来,创建 阅读全文
摘要:
Express 应用程序生成器 官方地址 npx express-generator --git -view=ejs myapp cd myapp npm install npm start 项目完善 CORS app.js //设置CORS app.all('*',function (req, r 阅读全文
摘要:
官方教程 安装 npm install --save @antv/g6 使用 vue 作为模板 步骤 <template> <v-container> <!--步骤.1 容器 --> <div id="mountNode"></div> </v-container> </template> <scr 阅读全文