Socket
Socket
Sign inDemoInstall

@mole-inc/bin-wrapper

Package Overview
Dependencies
85
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @mole-inc/bin-wrapper

Binary wrapper that makes your programs seamlessly available as local dependencies


Version published
Weekly downloads
797K
increased by1.96%
Maintainers
1
Install size
5.99 MB
Created
Weekly downloads
 

Changelog

Source

8.0.1 (2022-12-08)

Bug Fixes

  • ignore elf ext (0c34882)

Readme

Source

bin-wrapper Node CI

Binary wrapper that makes your programs seamlessly available as local dependencies

Downloads Version codecov

Install

$ npm install @mole-inc/bin-wrapper

Usage

import {BinWrapper} from '@mole-inc/bin-wrapper';

const base = 'https://github.com/imagemin/gifsicle-bin/raw/master/vendor';
const bin = new BinWrapper()
	.src(`${base}/macos/gifsicle`, 'darwin')
	.src(`${base}/linux/x64/gifsicle`, 'linux', 'x64')
	.src(`${base}/win/x64/gifsicle.exe`, 'win32', 'x64')
	.dest(path.join('vendor'))
	.use(process.platform === 'win32' ? 'gifsicle.exe' : 'gifsicle')
	.version('>=1.71');

(async () => {
	await bin.run(['--version']);
	console.log('gifsicle is working');
})();

Get the path to your binary with bin.path:

console.log(bin.path);
//=> 'path/to/vendor/gifsicle'

if you have the requested binary installed globally, this one will be used instead (if everything works)

API

new BinWrapper(options)

Creates a new BinWrapper instance.

options

Type: Object

skipCheck

Type: boolean
Default: false

Whether to skip the binary check or not.

filename

Type: string
Default: undefined

Set the binary filename.

gotOptions

Type: object
Default: undefined

Any of the https.request options.

https://github.com/sindresorhus/got/tree/v11#options

.src(url, [os], [arch])

Adds a source to download.

url

Type: string

Accepts a URL pointing to a file to download.

os

Type: string

Tie the source to a specific OS.

arch

Type: string

Tie the source to a specific arch.

.dest(destination)

destination

Type: string

Accepts a path which the files will be downloaded to.

.use(binary)

binary

Type: string

Define which file to use as the binary.

.path

Returns the full path to your binary.

.version(range)

range

Type: string

Define a semver range to check the binary against.

.run([arguments])

Runs the search for the binary. If no binary is found it will download the file using the URL provided in .src().

arguments

Type: Array
Default: ['--version']

Command to run the binary with. If it exits with code 0 it means that the binary is working.

License

This is a fork of kevva/bin-wrapper.

see LICENSE file.

Keywords

FAQs

Last updated on 08 Dec 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc