# dpape-node-utils **Repository Path**: dpapejs/dpape-node-utils ## Basic Information - **Project Name**: dpape-node-utils - **Description**: node common utils - **Primary Language**: TypeScript - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-07-25 - **Last Updated**: 2022-07-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: Nodejs ## README # @dpapejs/node-utils nodejs common tool library ## Install ``` npm i @dpapejs/node-utils -S ``` ## Quick Start ```js // Delete the directory and all subfiles const { removeDir } = require("@dpapejs/node-utils"); const path = require("path"); removeDir(path.join(__dirname, "./test"), () => { console.log("Successful"); }); ```