Socket
Socket
Sign inDemoInstall

@sindresorhus/df

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sindresorhus/df

Get free disk space info from `df -kP`


Version published
Weekly downloads
200K
increased by2.83%
Maintainers
1
Weekly downloads
 
Created

What is @sindresorhus/df?

@sindresorhus/df is an npm package that provides a simple way to get free disk space information for all mounted filesystems on a Unix-like operating system. It is a Node.js wrapper around the Unix `df` command.

What are @sindresorhus/df's main functionalities?

Get disk space information

This feature allows you to retrieve information about the disk space of all mounted filesystems. The code sample demonstrates how to use the package to get disk space information and log it to the console.

const df = require('@sindresorhus/df');

(async () => {
    const diskSpace = await df();
    console.log(diskSpace);
})();

Other packages similar to @sindresorhus/df

Keywords

FAQs

Package last updated on 14 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc