脚本
一些实用脚本
radation
这个作者很懒,什么都没留下…
展开
-
如何代码降重
本文讨论代码降重策略和长久降重机制角度原创 2023-09-19 14:05:53 · 3596 阅读 · 0 评论 -
递归删除子目录中所有dist和node_modules
const fs = require("fs")const path = require("path")const delDirs = ["node_modules", "dist"]var shell = require("shelljs")/** 递归删除当前目录下所有 dist / node_modules */function del(filePath, root = "") { fs.stat(filePath, function (err, stat) { if (err原创 2022-03-25 14:41:47 · 415 阅读 · 0 评论 -
文件去重脚本
// 使用说明// 首先在官网下载node http://nodejs.cn/download/ 就可以在命令行使用node命令了// 然后把这个文件放在在你需要去重文件的目录下 打开命令行到文件所在目录 输入 node fileDeDuplication 即可const fs = require("fs")const crypto = require("crypto")const readline = require("readline")const path = require("path"原创 2021-12-29 20:24:30 · 427 阅读 · 0 评论