Live data from Hacker News

MSPaint in JavaScript

jspaint.app

11–20 of 129 posts

Re: MSPaint in JavaScript

#13
I had originally assumed this was some sort of webassembly port of the actual Microsoft Paint source code. But it looks like a completely custom JavaScript app built from the ground up to look and work very similarly to Microsoft Paint. That’s actually super impressive, although not quite the technological feat I had originally assumed. It does make this more dubious from a trademark perspective, the author might want to make it more clear it’s not actually Microsoft Paint.

Re: MSPaint in JavaScript

#15
Ah, this could be used as the missing paint in macOS. Even taking a screenshot and dragging it inside the browser works as expected. Is there an easy wat to turn this into an app that can live locally?

Paint is the only thing I miss about Windows.

Re: MSPaint in JavaScript

#17
post #15

Ah, this could be used as the missing paint in macOS. Even taking a screenshot and dragging it inside the browser works as expected. Is there an easy wat to turn this into an app that can live locally? Paint is the only thing I miss about Windows.

Presumably Electron, but it may be slightly more comfortable to compile something like KolourPaint for macOS instead.

Re: MSPaint in JavaScript

#19
post #15

Ah, this could be used as the missing paint in macOS. Even taking a screenshot and dragging it inside the browser works as expected. Is there an easy wat to turn this into an app that can live locally? Paint is the only thing I miss about Windows.

Download and unzip NW.js, create a file called package.json with the following text:

  { "name": "JSPaint", "main": "https://jspaint.app/" }
Place it in the extracted folder, then start nw.
Post reply on HN