Skip to content

Instantly share code, notes, and snippets.

@neves
Created October 10, 2015 17:43
Show Gist options
  • Save neves/1d74370051972aeb716d to your computer and use it in GitHub Desktop.
Save neves/1d74370051972aeb716d to your computer and use it in GitHub Desktop.
var app = require('app');
var BrowserWindow = require('browser-window');
app.on('window-all-closed', function() {
app.quit();
});
app.on('ready', function() {
new BrowserWindow({width: 1024, height: 600})
.loadUrl('http://mozilla.github.io/pdf.js/web/viewer.html')
});
{
"main": "main.js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment