I've been looking all over the internet for this. I'd like to know if there is any Node.js packages/bindigs/libraries that allow you to make an application that draws on the screen without node-webkit(NW.js)/Electron or other implementations based on browsers. Maybe something that binds to opengl with support for 2D graphics?
Let me know if you know some names or links. If not I might have to write something myself.
Thank you guys.
node my-app.js
and have it create a window (or go fullscreen), display some graphics, and even better get some keyboard/mouse input and audio. Basically let's say I want to make a videogame for a desktop computer in JavaScript. But I don't want to rely on a specific browser platform, just on Node.JS and the V8 Engine. Are there any bidings to GL or something similar? – Kenning