All Projects → Alex-D → check-disk-space

Alex-D / check-disk-space

Licence: MIT license
Light multi-platform disk space checker without third-party for Node.js

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to check-disk-space

Packagephobia
⚖️ Find the cost of adding a new dependency to your project
Stars: ✭ 1,110 (+1918.18%)
Mutual labels:  npm-package, disk-space
diskusage
FANTASTIC SPEED utility to find out top largest folders/files on the disk.
Stars: ✭ 64 (+16.36%)
Mutual labels:  disk-space, disk-usage
diskover-community
Diskover Community Edition - Open source file indexer, file search engine and data management and analytics powered by Elasticsearch
Stars: ✭ 1,257 (+2185.45%)
Mutual labels:  disk-space, disk-usage
Duf
Disk Usage/Free Utility - a better 'df' alternative
Stars: ✭ 7,240 (+13063.64%)
Mutual labels:  disk-space, disk-usage
SharpDiskSweeper
Reveal outstanding files or folders that are eating up your disk space
Stars: ✭ 21 (-61.82%)
Mutual labels:  disk-space, disk-usage
googlesheetstojson
An npm package to read Google Sheets data and convert it to JSON without publishing it to the web
Stars: ✭ 24 (-56.36%)
Mutual labels:  npm-package
Countdown
A friendly disk usage counter for macOS
Stars: ✭ 28 (-49.09%)
Mutual labels:  disk-usage
diskspace
macOS command line tool to return the available disk space on APFS volumes
Stars: ✭ 123 (+123.64%)
Mutual labels:  disk-space
electron-remote-dashboard
Remote dashboard with a control app
Stars: ✭ 14 (-74.55%)
Mutual labels:  npm-package
docker-google-lighthouse-puppeteer
Google Lighthouse + Puppeteer / Docker Image
Stars: ✭ 29 (-47.27%)
Mutual labels:  npm-package
ionic-image-upload
Ionic Plugin for Uploading Images to Amazon S3
Stars: ✭ 26 (-52.73%)
Mutual labels:  npm-package
ngx-deploy-npm
Publish your libraries to NPM with just one command
Stars: ✭ 70 (+27.27%)
Mutual labels:  npm-package
ostrio-analytics
📊 Visitor's analytics tracking code for ostr.io service
Stars: ✭ 14 (-74.55%)
Mutual labels:  npm-package
img2gcode
convert jpg, png,gif to gcode with nodejs and jimp
Stars: ✭ 31 (-43.64%)
Mutual labels:  npm-package
1broker-client
Complete node.js client for 1Broker API, open sourced by @telebroker_bot for Telegram!
Stars: ✭ 19 (-65.45%)
Mutual labels:  npm-package
node.js-chatbot
Zoom Node.js Chatbot Library
Stars: ✭ 19 (-65.45%)
Mutual labels:  npm-package
html-to-react
A lightweight library that converts raw HTML to a React DOM structure.
Stars: ✭ 696 (+1165.45%)
Mutual labels:  npm-package
weak-merge
🔗 A module for merging WeakSets and WeakMaps.
Stars: ✭ 20 (-63.64%)
Mutual labels:  npm-package
impression
👀Element view notifier
Stars: ✭ 77 (+40%)
Mutual labels:  npm-package
react-windows-ui
Build Windows fluent UI apps using ReactJS. Provides a set of accessible, reusable, and composable React components that make it super easy to create websites and apps.
Stars: ✭ 383 (+596.36%)
Mutual labels:  npm-package

Check disk space

Continue Integration check-disk-space on npm License MIT

Introduction

Light multi-platform disk space checker without third party for Node.js.

  • Works on Linux, macOS and Windows
  • Take care of mounting points on unix-like systems
  • No dependencies
  • TypeScript support

Install

npm install check-disk-space

Usage

// ES
import checkDiskSpace from 'check-disk-space'

// CommonJS
const checkDiskSpace = require('check-disk-space').default

// On Windows
checkDiskSpace('C:/blabla/bla').then((diskSpace) => {
    console.log(diskSpace)
    // {
    //     diskPath: 'C:',
    //     free: 12345678,
    //     size: 98756432
    // }
    // Note: `free` and `size` are in bytes
})

// On Linux or macOS
checkDiskSpace('/mnt/mygames').then((diskSpace) => {
    console.log(diskSpace)
    // {
    //     diskPath: '/',
    //     free: 12345678,
    //     size: 98756432
    // }
    // Note: `free` and `size` are in bytes
})
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].