boilerplate-nodejs
boilerplate-nodejs copied to clipboard
Build desktop apps with Node.js, system webview and native UI.
Frameless window can not resize OS:Windows 10 ```js const mainWindow = gui.Window.create({frame:false}); //frame less mainWindow.onClose = () => gui.MessageLoop.quit(); mainWindow.setContentSize({width: 400, height: 250}); mainWindow.setContentView(createBrowser()); mainWindow.center(); mainWindow.activate(); mainWindow.setResizable(true); // can not...
Is it possible to package HTML and other resource files together instead of storing them in separate file directories?