@dpapejs/node-utils
v0.1.0
Published
Utils for the Nodejs
Downloads
1
Readme
@dpapejs/node-utils
nodejs common tool library
Install
npm i @dpapejs/node-utils -S
Quick Start
// Delete the directory and all subfiles
const { removeDir } = require("@dpapejs/node-utils");
const path = require("path");
removeDir(path.join(__dirname, "./test"), () => {
console.log("Successful");
});