top | item 4800077

The entire win32 API in JavaScript

113 points| Benvie | 13 years ago |gist.github.com | reply

33 comments

order
[+] brokenparser|13 years ago|reply
What appears to be missing is the automatic mapping of the A (ansi) and W (wide) suffixed function names to conventional unsuffixed function names. In C, this is done using macros. If UNICODE is not defined, the macro MessageBoxEx would expand to MessageBoxExA. With UNICODE, the macro expands to MessageBoxExW. Similarly, TEXT is used to wrap strings to ensure they're unprefixed or prefixed with an L respectively. You could do this by hand, it's just a bit more tedious to write.
[+] vinayan3|13 years ago|reply
One would wish these distinctions could be forgotten with calling the Win32api from JS. However, that is a pipe dream and could have an impact on performance.
[+] ruswick|13 years ago|reply
This is fascinating, but I just can't discern a practical purpose.

The novelty of the "I just converted this huge piece of software written in c or machine code into JS" type of post usually extends only to the title. The link itself generally serves only to evoke a profound "WTF" (and in this case took upwards of 40 seconds to load.)

Although I appreciate the undertaking of compiling prodigious libraries, drivers, etc. into JS, I don't see practical value in the product of said undertaking.

The fact that this practice has proliferated throughout HN recently is odd. This kind of thing is certainly remarkable, but it doesn't do anything.

[+] bpatrianakos|13 years ago|reply
You're 100% right but you're missing something here. Something like this takes skill and builds skill and when you've finished you just want to show it off. And it really is impressive! Sure, it has no practical application itself but I'm sure that some piece of this or some technique used in porting it to JS will have some practical value somewhere. Sometimes the practical is born from the impractical.

I guess what I'm saying is why does it need to do anything or be practical? Cool stuff is just cool sometimes.

[+] alter8|13 years ago|reply
sarvesh, you were hellbanned more than 3 years ago. His post:

Windows script host (cscript) allows you to execute js files in addition to vbscript (vbs). This is particularly useful in extending the functionality of batch files. This can be useful in a lot of circumstances build process, installation etc.

[+] scg|13 years ago|reply
Can someone please explain what's the purpose of this JS code?
[+] unknown|13 years ago|reply

[deleted]

[+] k3n|13 years ago|reply
Nice! Do you have a quick example you could share?
[+] olalonde|13 years ago|reply
Was this generated with Clang? I hope it was not written by hand...
[+] 4ad|13 years ago|reply
I'm more interested in how this was automatically generated rather than in the end product itself.
[+] guiomie|13 years ago|reply
What is the overhead of using FFI in this case vs going with a native c/c++ module ?
[+] Cordiapxq|13 years ago|reply
Not sure what the point of this is.. can someone enlighten me?
[+] thibaut_barrere|13 years ago|reply
This brings plenty of low-level (or higher level) method call and related structure definitions for Windows.

You can for instance get processes informations, start a wave sound, and many more.

Scroll down to the middle to see API calls.

One use-case is using CoffeeScript or JavaScript to write tools that would benefit from these calls (could be system tools, or not).

[+] guiomie|13 years ago|reply
You can use node.js and do win32 api calls. I
[+] cpayne|13 years ago|reply
Still no cure for cancer...