Socket
Socket
Sign inDemoInstall

detect-libc

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

detect-libc

Node.js module to detect the C standard library (libc) implementation family and version


Version published
Weekly downloads
3.5M
decreased by-80.72%
Maintainers
1
Weekly downloads
 
Created

What is detect-libc?

The detect-libc npm package is a simple utility for detecting the C standard library version on a system. It is primarily used in node-gyp and prebuild-install to ensure binary compatibility with the host system's libc when compiling native addons.

What are detect-libc's main functionalities?

Detecting the system's C library

This feature allows you to detect the C library family (e.g., glibc, musl) and version used by the system. This is useful for determining binary compatibility for native modules.

const detectLibc = require('detect-libc');

const libcFamily = detectLibc.family;
const libcVersion = detectLibc.version;

console.log(`Libc Family: ${libcFamily}`);
console.log(`Libc Version: ${libcVersion}`);

Checking if the system uses a specific C library

This feature provides a boolean check to determine if the system is using a non-glibc C library, which can be important for certain build processes and compatibility checks.

const detectLibc = require('detect-libc');

if (detectLibc.isNonGlibcLinux) {
  console.log('The system uses a non-glibc C library.');
} else {
  console.log('The system uses glibc.');
}

Other packages similar to detect-libc

Keywords

FAQs

Package last updated on 27 Oct 2017

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc