Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@mole-inc/bin-wrapper
Advanced tools
Binary wrapper that makes your programs seamlessly available as local dependencies
Binary wrapper that makes your programs seamlessly available as local dependencies
$ npm install @mole-inc/bin-wrapper
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)
new BinWrapper(options)
Creates a new BinWrapper
instance.
Type: Object
Type: boolean
Default: false
Whether to skip the binary check or not.
Type: number
Default: 1
Strip a number of leading paths from file names on extraction.
Type: string
Default: undefined
Set the binary filename.
Type: object
Default: undefined
Any of the https.request
options.
https://github.com/sindresorhus/got/tree/v10.7.0#options
Adds a source to download.
Type: string
Accepts a URL pointing to a file to download.
Type: string
Tie the source to a specific OS.
Type: string
Tie the source to a specific arch.
Type: string
Accepts a path which the files will be downloaded to.
Type: string
Define which file to use as the binary.
Returns the full path to your binary.
Type: string
Define a semver range to check the binary against.
Runs the search for the binary. If no binary is found it will download the file
using the URL provided in .src()
.
Type: Array
Default: ['--version']
Command to run the binary with. If it exits with code 0
it means that the
binary is working.
This is a fork of kevva/bin-wrapper.
see LICENSE file.
FAQs
Binary wrapper that makes your programs seamlessly available as local dependencies
The npm package @mole-inc/bin-wrapper receives a total of 756,224 weekly downloads. As such, @mole-inc/bin-wrapper popularity was classified as popular.
We found that @mole-inc/bin-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.