npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-binary

v1.1.0

Published

Download node binaries for various platforms and architectures, easily

Downloads

9

Readme

node-binary

npm version dependencies Build Status

Download node binaries for various platforms and architectures, easily.

var binary = require('node-binary');

binary.download({
	os: 'darwin',
	arch: 'x64',
	version: 'v0.12.0'
}, '/opt/node', function(error, binaryPath) {
	if(error) throw error;

	console.log('The node binary for OS X x64 was downloaded to ' + binaryPath);
});

Installation

Install node-binary by running:

$ npm install --save node-binary

CLI

node-binary provides a CLI version as well. Install it by running:

$ npm install -g node-binary

You can now download node binaries like this:

$ node-binary download v0.12.0 ~/Downloads --arch x64 --os darwin

Documentation

binary.download(Object options, String dest, Function callback)

Download a nodejs binary to a certain location.

options

  • os is the operating system to download node for.

This module curently supports darwin, win32, linux and sunos.

  • arch is the architecture to download node for.

This module curently supports x64 and x86.

  • version is the node version to download.

It can be a string such as v0.12.0 or simply 0.12.0.

dest

The directory to download the binary to.

The binary will automatically be renamed to node-<version>-<os>-<arch>[.exe].

callback(error, binaryPath)

The callback will be called with a possible error, or with the absolute path to the downloaded binary.

Tests

Run the test suite by doing:

$ gulp test

TODO

  • [ ] Implement a way to get the state of the download, to make use of a progress bar, etc.
  • [ ] Add executable mode to resulting binaries on UNIX.

Contribute

Before submitting a PR, please make sure that you include tests, and that coffeelint runs without any warning:

$ gulp lint

ChangeLog

v1.1.0

  • Improve error messages.
  • Prevent temporary directory from being undefined.

v1.0.1

Set mode to 755 for the downloaded binary.

Support

If you're having any problem, please raise an issue on GitHub.

License

The project is licensed under the MIT license.