steal-nw

1.0.0 • Public • Published

npm version

steal-nw

Create NW.js applications from StealJS projects.

Install

npm install steal-nw --save-dev

Example

Pass NWOptions and StealTools.BuildResult to steal-nw:

var stealTools = require("steal-tools");
var stealNw = require("steal-nw");
 
var nwOptions = {
  buildDir: "./build",
  platforms: ["osx"],
  files: ["./**/*"]
};
 
var buildPromise = stealTools({
  config: __dirname + "/package.json!npm"
});
 
buildPromise.then(function(buildResult){
    stealNw(nwOptions, buildResult);
});

API

stealNw(nwOptions, buildResult) -> Promise

NWOptions

NW.js options are passed as the first argument are the same as documented on node-webkit-builder.

BuildResult

The result of running StealTools multi-build.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i steal-nw

Weekly Downloads

207

Version

1.0.0

License

MIT

Last publish

Collaborators

  • justinbmeyer
  • matthewp
  • phillipskevin