
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A versatile binary package manager for downloading and managing executables from various sources
A versatile binary package manager for downloading and managing executables from various sources.
npm install -g versabin
versabin install ripgrep
versabin install ripgrep@13.0.0
versabin list
versabin versions ripgrep
versabin use ripgrep 13.0.0
versabin exec ripgrep --version
import { VersaBin } from 'versabin';
const versabin = new VersaBin();
// Install a binary
await versabin.install({
name: 'ripgrep',
source: {
type: 'github',
config: {
owner: 'BurntSushi',
repo: 'ripgrep',
assetPattern: 'ripgrep-.*-{platform}-{arch}.{ext}'
}
}
});
// Execute a binary
const result = await versabin.execute('ripgrep', ['--version']);
console.log(result.stdout);
// Get binary path
const binaryPath = versabin.getBinaryPath('ripgrep');
// List installed versions
const versions = await versabin.listVersions('ripgrep');
// Switch version
await versabin.use('ripgrep', '13.0.0');
Create a versabin.config.json file in your project or home directory:
{
"storage": {
"strategy": "user",
"symlink": true
},
"packages": [
{
"name": "ffmpeg",
"description": "A complete solution to record, convert and stream audio and video",
"source": {
"type": "github",
"config": {
"owner": "FFmpeg",
"repo": "FFmpeg",
"assetPattern": "ffmpeg-.*-{platform}-{arch}.{ext}"
}
},
"binaryPath": "bin/ffmpeg",
"platforms": ["win32", "darwin", "linux"],
"architectures": ["x64", "arm64"],
"env": {
"FFMPEG_PATH": "{binPath}"
}
}
]
}
MIT
FAQs
A versatile binary package manager for downloading and managing executables from various sources
We found that versabin demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.