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

@anglay/nw

v1.0.0

Published

A installer for nw.js

Downloads

4

Readme

nw Build Status

An installer for nw.js.

nw.js is an app runtime based on Chromium and io.js. For building desktop applications that will run on OSX, Windows and Linux.

NPM

usage

Install locally to your project with: npm install nw and then in your package.json add a script:

{
  "scripts": {
    "start": "nw"
  }
}

Now it will run your local project when you type npm start.

If your project is in another folder, add the path to the project "start": "nw path/to/app".

You could also call the binary directly with node_modules/.bin/nw instead of adding to your package.json.

global

You can also install globally with npm install nw -g and then in any project type nw to run the project. Installing locally is recommended though as each project can have its own dependent version of nw.js.

example

If you want a really quick example try this:

  1. git clone https://github.com/zcbenz/nw-sample-apps && cd nw-sample-apps
  2. npm init
  3. npm install nw
  4. "node_modules/.bin/nw" file-explorer

and now you should see a file explorer demo app.

command line options

There are a few (platform-specific) arguments you can pass to the nw executable to customize your nw.js application:

  • --mac_plist <path-to-plist-file>: (OS X only) Copies the given file to Info.plist in the app bundle. This lets you do things like change your app's name and point to a different icon.

  • --mac_icon <path-to-icns-file>: (OS X only) Copies the given .icns file to the Resources/ dir in the app bundle. You will need to point to the file with a custom plist file as well (see --mac_list)

NOTE: These options will keep the copied files in the app bundle for as long as the bundle is on the filesystem (they're not deleted between app invocations). As a result, they're not recommended if you installed nwjs globally using -g. Also note that OS X caches these files, so you may need to manually clear these cached files during development.

install a specific version of nw.js

To install a specific version of nw.js use npm with the specific version: npm install [email protected]

Please note: This npm package version tracks the version of nw.js that will be installed, with an additional build number that is used for revisions to the installer. As such 0.12.0-1 and 0.12.0-2 will both install [email protected] but the latter has newer changes to the installer.

You may use npm view nw versions to view the list of available versions.

install a specific build type of nw.js

nw.js has three build types: normal, sdk and nacl. To install a specific build type you may set npm config property nwjs_build_type, environment variable NWJS_BUILD_TYPE or pass command line option --nwjs_build_type:

npm install nwjs --nwjs_build_type=sdk

Setting option in .npmrc file (https://www.npmjs.org/doc/files/npmrc.html):

nwjs_build_type=sdk

Setting environment variable NWJS_BUILD_TYPE:

export NWJS_BUILD_TYPE=sdk

You can alternatively install sdk build by specifying -sdk suffix in version:

npm install [email protected]

finding the path to the nw.js binary

If you would like to programmatically retrieve the path to the nw.js binary use:

var findpath = require('nw').findpath;
var nwpath = findpath();
// nwpath will equal the path to the binary depending on your environment

retrieve binaries from custom download location or file path

The installer attempts to download binaries from the default location of http://dl.nwjs.io/v. You can override this by setting the npm config property nwjs_urlbase on the command line by passing the --nwjs_urlbase option:

npm install nwjs --nwjs_urlbase=http://my.own.location/somewhere

or adding it to your .npmrc file (https://www.npmjs.org/doc/files/npmrc.html):

nwjs_urlbase=http://my.own.location/somewhere

You can alternatively set an environment variable NWJS_URLBASE:

export NWJS_URLBASE=http://my.own.location/somewhere

The installer supports file:// URLs to retrieve files from the local filesystem:

export NWJS_URLBASE=file:///home/bilbo/my/own/mirror

using a proxy with or without authentication

If you are behind a proxy server you have to set an environment variable http_proxy with proxy servers url:

export http_proxy="http://username:[email protected]:8080"

or

export http_proxy="http://myproxy.com:8080"

license

nw.js's code and this installer use the MIT license.