Skip to content

Instantly share code, notes, and snippets.

@imchao9
Created July 15, 2016 16:52
Show Gist options
  • Select an option

  • Save imchao9/b1f26504eef269c4a9399a63038f6528 to your computer and use it in GitHub Desktop.

Select an option

Save imchao9/b1f26504eef269c4a9399a63038f6528 to your computer and use it in GitHub Desktop.
Nw.js 监听窗口关闭
var win = nw.Window.get();
var child_process = require('child_process');
var path = require('path');
win.on('close', function() {
child_process.exec(path.dirname(process.execPath)+'\\stop-server.bat');
win.close(true);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment