Socket
Socket
Sign inDemoInstall

bin-links

Package Overview
Dependencies
Maintainers
7
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bin-links

JavaScript package binary linker


Version published
Weekly downloads
2.7M
decreased by-3.24%
Maintainers
7
Weekly downloads
 
Created

What is bin-links?

The bin-links npm package is a module that is responsible for linking binary files and commands for npm packages. It handles the creation of symlinks for executable files to the .bin directory within the node_modules folder or the global bin directory when a package is installed. This allows users to execute the binaries provided by the installed packages directly from the command line.

What are bin-links's main functionalities?

Linking Binaries

This feature allows the bin-links package to create symlinks for the binaries specified in the package.json file of a node module. The code sample demonstrates how to use bin-links to link binaries for a local package installation.

const binLinks = require('bin-links');

binLinks({
  path: '/path/to/package',
  pkg: { bin: { 'my-binary': './cli.js' } },
  global: false,
  force: true
}).then(() => {
  console.log('Binaries linked successfully.');
}).catch((err) => {
  console.error('Error linking binaries:', err);
});

Linking Global Binaries

This feature is similar to the previous one but is used for linking binaries globally. When the 'global' option is set to true, the binaries are linked in the global bin directory, making them accessible from anywhere in the system.

const binLinks = require('bin-links');

binLinks({
  path: '/path/to/package',
  pkg: { bin: { 'my-binary': './cli.js' } },
  global: true,
  force: true
}).then(() => {
  console.log('Global binaries linked successfully.');
}).catch((err) => {
  console.error('Error linking global binaries:', err);
});

Other packages similar to bin-links

Keywords

FAQs

Package last updated on 22 Feb 2020

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