disk-utility
v0.0.2
Published
Quickly calculate the size of a folder or disk on macOS and Linux
Downloads
9
Readme
disk-utility
Quickly calculate the size of a folder or disk on macOS and Linux
Features
- Does not depend on system dependencies (like
du
) - Cross-platform (waiting on windows support)
- Built using Neon!
Installation
npm install disk-utility
Usage
import diskUtility from 'disk-utility';
// Calculate the size of a directory
diskUtility.dirSize(__dirname);
// Pass optional core count
diskUtility.dirSize(__dirname, 4);
Local Setup
git clone https://github.com/amilajack/disk-utility
cd disk-utility
yarn
yarn test