-
Notifications
You must be signed in to change notification settings - Fork 3.9k
zcbenz edited this page Nov 5, 2012
·
26 revisions
App API requires node-webkit >= v0.3.1
// Load native UI library
var gui = require('nw.gui');
// Print arguments
console.log(gui.App.argv);
// Quit current app
gui.App.quit();
Get the command line arguments when starting the app.
Available after node-webkit v0.3.2
Send the close
event to all windows of current app, if no window is blocking the close
event, then the app will quit after all windows have done shutdown. Use this method to quit an app will give windows a chance to save data.
Quit current app. This method will not send close
event to windows and app will just quit quietly.
Following events can be listened by using App.on()
function, for more information on how to receive events, you can visit EventEmitter.
Available after node-webkit v0.3.2
Emitted when users opened a file with your app. For more on this, see Handling files.