Questions tagged [nw.js]

NW.js lets you call Node.js modules directly from DOM. It was previously known as "node-webkit" project.

NW.js (previously known as "node-webkit" project) is an app runtime based on Chromium and Node.js.

It lets you call Node.js modules directly from DOM and enables a new way of writing applications with all Web technologies.

308 questions
0
votes
1 answer

node-webkit website test utility

I'm trying to build a tool using nw.js which can open website window, load jQuery library, and run script with parameters, for e.g. validate page title text and return results back to main script. Can anyone give a sample of valid code?
pvf
  • 72
  • 1
  • 6
0
votes
1 answer

node-webkit windows file system seperator?

Im currently working on a simple file-explorer with NW.js Im developing on a linux-machine and there it works fine until now, but i tested it on a windows-system at work and there is a problem with listing all files in a directory. I developed it…
Wolfgaung
  • 53
  • 4
0
votes
2 answers

Node-webkit iframe access to parent nw function

I have develop a simple nw.js (ex node-webkit) application. It open a fullscreen Iframe with attribute nwfaketop Inside this iframe ( logically in different domain) I need to call a parent nodejs function. How can I do? Here code of my index.html…
r1si
  • 1,039
  • 1
  • 18
  • 28
-1
votes
1 answer

Accessing the DOM between two renderers in Electron

Is it possible to do this in Electron: I want to duplicate a video to a 2nd screen. This is easyly done, by invoking the following 50 times/second: canvas_context_2nd_screen.drawImage(video_1st_screen,0,0,width_canvas_2nd,height_canvas_2nd); but in…
bytepirate
  • 279
  • 2
  • 6
-1
votes
1 answer

Can't write/append to JSON file in Node Webkit

I want to have persistent memory (store the user's progress) in a .json file in %AppData%. I tried doing this according to this post, but it doesn't work. For testing purposes I'm only working with storing one object. The code below doesn't work at…
angularchobo
  • 183
  • 1
  • 1
  • 16
-1
votes
1 answer

Why my javascript game is slow when compiled with nw.js (node-webkit)?

It is not much slower than in a browser, but I thought it will be MUCH MUCH faster, since it is a native windows application when compiled, and not HTML5 app. What am I missing? It is graphic intensive game, lots of re-flows and re-paints, but that…
lluxx
  • 61
  • 6
-1
votes
3 answers

How to package a node webkit app as a hybrid standalone desktop app

The nwjs docs describe very detailed How to package and distribute your apps for every single OS. I was wondering if it's possible to package / distribute a nwjs app as a standalone version which is running on all supported platforms as a…
Jan Viehweger
  • 462
  • 5
  • 17
-3
votes
1 answer

How to build desktop app from my website?

I see this github project: https://github.com/Aluxian/WhatsApp-Desktop. I don't know how to build a desktop app (exe) or mac app(dmg) from that github source code. who added on github not say clear for understand. Can anyone tell me step by step…
1 2 3
20
21