0.9.2 • Published 10 years ago

node-webkit-builds v0.9.2

Weekly downloads
12
License
MIT
Repository
github
Last release
10 years ago

node-webkit-builds Build Status

Easy node-webkit version dependency control.

What is it?

node-webkit-builds allows you to easily control the dependency for node-webkit. The module version is always in sync with the version of node-webkit, allowing you to declare the version of node-webkit in which you depend on. This is particularly useful for build tools, so that you can easily download the version of node-webkit you depend on, for a particular operating system.

This module provides you:

  • URL to OS builds
    • linux32
    • linux64
    • win32
    • mac32
  • URL of the release notes

Usage

Start by installing the module using npm install node-webkit-builds. Refer to npm for details on how to install a specific version of the module.

var nwb = require('node-webkit-builds');
console.log('version:', nwb.version);
console.log('release notes:', nwb.releaseNotes);
console.log('linux32:', nwb.builds.linux32);
console.log('linux64:', nwb.builds.linux64);
console.log('win32:', nwb.builds.win32);
console.log('mac32:', nwb.builds.mac32);

Updating the module

In case you ever need to update this package manually, install automaton (npm install -g automaton) and run automaton tasks/update.autofile.js. This will automatically look for new versions of the build, and update the module if necessary.

0.9.2

10 years ago

0.9.1

10 years ago

0.8.4

10 years ago

0.8.2

10 years ago

0.8.1

10 years ago

0.8.0

10 years ago

0.7.5

11 years ago

0.7.3

11 years ago

0.7.2

11 years ago