generator-node-webkit / 2.0.0-alpha.3 last updated a year ago created on Oct 1st 2013

Install

npm install --save generator-node-webkit

Clone

git clone git@github.com:Dica-Developer/generator-node-webkit.git

dependencies show all 525

main chalk 1.1.3 MIT
decompress-zip 0.1.0 MIT
github 0.2.4 MIT
inquirer 0.8.5 MIT
lodash 3.10.1 MIT

maintainers

dica-developer

versions 17 total

2.0.0-alpha.3 a year ago dica-developer
1.0.4 a year ago dica-developer
1.0.3 a year ago dica-developer
1.0.2 a year ago dica-developer
1.0.1 a year ago dica-developer
1.0.0 a year ago dica-developer
0.9.2 2 years ago dica-developer
0.9.1 2 years ago dica-developer
0.9.0 2 years ago dica-developer
0.8.1 2 years ago dica-developer
0.8.0 2 years ago dica-developer
0.7.0 2 years ago dica-developer
0.6.0 2 years ago dica-developer
0.1.0 3 years ago dica-developer
0.0.5 3 years ago dica-developer
0.0.4 3 years ago dica-developer
0.0.1 3 years ago dica-developer
25 Downloads yesterday.

readme

NWJS generator Build Status

Generator to easily maintain cross platform apps. The generator helps to setup a new project and package the app for different OS's and nwjs versions.

Usage

Install generator-node-webkit:

npm install -g generator-node-webkit

Make a new directory, and cd into it:

mkdir my-new-project && cd $_

Run yo node-webkit:

yo node-webkit

Generators

Available generators:

App

Sets up a new nwjs app, generating all the boilerplate you need to get started.

Example:

yo node-webkit

Download

Downloads a specific nwjs version for an OS of your choice. Generates needed grunt task to build the final app. You can call this generator at any time you want to have a new version nwjs. The sub generator pay attention to already downloaded nwjs source files and will skip the download.

Example:

1
2
3
4
5
6
7
8
yo node-webkit:download
[?] Please specify which version of node-webkit you want to download: (v0.12.0)
[?] Which platform you develop on? (Use arrow keys)
    ❯ MacOS32
      MacOS64
      Linux32
      Linux64
      Windows32

Produces:

1
2
3
4
├── nwjs
│   ├── MacOS32_v0.12.0     - The nwjs sources of this combination goes here
├── grunt-tasks             - All costum grunt tasks will go in here
│   ├── MacOS32_v0.12.0.js  - This is the main grunt task to build a dist for this version
Resolving all dependencies.. This could take a while as our cache is not yet fully warmed up.