Skip to content

Getting Started with nw.js

Cong Liu edited this page Mar 30, 2016 · 17 revisions

NOTE: some content in this wiki applies only to 0.12 and earlier versions. For official documentation on 0.13 and later, see http://docs.nwjs.io

This chapter contains some tutorial information to get you started with nw.js programming. It assumes that you have nw.js binaries. (Such binaries are available in the “Downloads” section of our README. If you want to build your own nw.js binaries, refer to the Building nw.js section instead.)

Nw.js is based on Chromium and io.js. It lets you call node.js code and modules directly from the DOM, and allows you to use Web technologies for your apps. Further, you can easily package a web application to a native application.

Basics

To begin our introduction to nwjs, we'll start with the simplest program possible.

Example 1. Hello World

Capture3

Create index.html:

<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <h1>Hello World!</h1>
  </body>
</html>

Create package.json:

{
  "name": "nw-demo",
  "main": "index.html"
}

Download the prebuilt binary for your platform, and use this command to run your app (Note: This should be run from the same directory as the package.json file you created):

$ /path/to/nw .

Note: on Windows, you can drag the package.json to nw.exe to run your app.

Alternatively, you could compress index.html and package.json into a zip archive, and run that. You could name the zip archive app.nw:

app.nw
|-- package.json
`-- index.html

Note: on Windows, you can now drag the app.nw to nw.exe to open it.

You can run the app from the zip archive using (Note: run this command from same directory as your app.nw archive):

$ /path/to/nw ./app.nw

Example 2. Native UI API

Capture4

There are APIs for native UI controls in nw.js. You can use these for controlling window, menu, etc.

The following example shows how to use menu.

<html>
<head>
  <title> Menu </title>
</head>
<body>
<script>
// Load native UI library
var gui = require('nw.gui');

// Create an empty menu
var menu = new gui.Menu();

// Add some items with label
menu.append(new gui.MenuItem({ label: 'Item A' }));
menu.append(new gui.MenuItem({ label: 'Item B' }));
menu.append(new gui.MenuItem({ type: 'separator' }));
menu.append(new gui.MenuItem({ label: 'Item C' }));

// Remove one item
menu.removeAt(1);

// Iterate menu's items
for (var i = 0; i < menu.items.length; ++i) {
  console.log(menu.items[i]);
}

// Add a item and bind a callback to item
menu.append(new gui.MenuItem({
label: 'Click Me',
click: function() {
  // Create element in html body
  var element = document.createElement('div');
  element.appendChild(document.createTextNode('Clicked OK'));
  document.body.appendChild(element);
}
}));

// Popup as context menu
document.body.addEventListener('contextmenu', function(ev) { 
  ev.preventDefault();
  // Popup at place you click
  menu.popup(ev.x, ev.y);
  return false;
}, false);

// Get the current window
var win = gui.Window.get();

// Create a menubar for window menu
var menubar = new gui.Menu({ type: 'menubar' });

// Create a menuitem
var sub1 = new gui.Menu();


sub1.append(new gui.MenuItem({
label: 'Test1',
click: function() {
  var element = document.createElement('div');
  element.appendChild(document.createTextNode('Test 1'));
  document.body.appendChild(element);
}
}));

// You can have submenu!
menubar.append(new gui.MenuItem({ label: 'Sub1', submenu: sub1}));

//assign the menubar to window menu
win.menu = menubar;

// add a click event to an existing menuItem
menu.items[0].click = function() { 
    console.log("CLICK"); 
};

</script>  
</body>
</html>

Example 3. Using node.js

You can call node.js and modules directly from the DOM. So it enables endless possibilities for writing apps with nw.js.

<html>
<body>
<script>
// get the system platform using node.js
var os = require('os')
document.write('Our computer is: ', os.platform())
</script>
</body>
</html>

Run and Package Apps

Now, we can write simple nw.js apps. Next is to learn more about how to run and package them.

Run the App

There are two general ways to run apps for all platforms.

  • From a folder. The startup path specifies this folder.
  • From a .nw file (a renamed .zip-file). The startup path specifies the file.

For Example:

nw path_to_app_dir
nw path_to_app.nw

Learn more about how to run apps.

Learn more about how to package and distribute your apps.

Troubleshooting

Please read Troubleshooting if there are any problems.

Go back to Wiki for much more.

Clone this wiki locally