Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@lesjoursfr/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 @lesjoursfr/bin-wrapper
import path from "path";
import BinWrapper from "@lesjoursfr/bin-wrapper";
const base = "https://github.com/imagemin/gifsicle-bin/raw/main/vendor";
const bin = new BinWrapper()
.addSrc(`${base}/macos/gifsicle`, "darwin")
.addSrc(`${base}/linux/x64/gifsicle`, "linux", "x64")
.addSrc(`${base}/win/x64/gifsicle.exe`, "win32", "x64")
.setDest(path.join("vendor"))
.setUse(process.platform === "win32" ? "gifsicle.exe" : "gifsicle")
.setVersion(">=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'
new BinWrapper(options)
Creates a new BinWrapper
instance.
Type: Object
boolean
false
Whether to skip the binary check or not.
number
1
Strip a number of leading paths from file names on extraction.
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 .addSrc()
.
Array
['--version']
Command to run the binary with. If it exits with code 0
it means that the
binary is working.
MIT © Kevin Mårtensson
FAQs
Binary wrapper that makes your programs seamlessly available as local dependencies
The npm package @lesjoursfr/bin-wrapper receives a total of 25 weekly downloads. As such, @lesjoursfr/bin-wrapper popularity was classified as not popular.
We found that @lesjoursfr/bin-wrapper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.