0.0.2 • Published 5 years ago

disk-utility v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

disk-utility

Build Status

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