nerd
nerd copied to clipboard
🔱 Javascript's God Mode. No VM. No Bytecode. No GC. Just native binaries.
Hi, I saw https://github.com/NectarJS/nectarjs/blob/master/LICENSE was MIT. However, many places still say GPL3 or later. I'm a bit confused. ``` nectar .\json-patch.js --generate --version NectarJS v0.7.115 nectar .\json-patch.js --generate ``` [zr2r0.zip](https://github.com/NectarJS/nectarjs/files/8809906/zr2r0.zip)...
[nectarjs.com](https://nectarjs.com/) linked in GitHub is down again. https://nectar.js.org/ is up though, but that doesn't have much information; especially missing the pages linked in GitHub
## Environment | command | output | | ----------- | -------- | | npx nectar --version | NectarJS v0.7.115| | npx --version | 8.1.2| | node --version | v16.13.1| ----------------------------...
As the project is now MIT-licensed, this exception no longer applies.
ESP32
Hi, Is there support for ESP32 devices yet. Thanks
``` console.log(-1 >>> 1); ``` NodeJS: ``` $ node shift_unsigned.js 2147483647 ``` Nectar: ``` $ nectar --run shift_unsigned.js [*] Generating source file [*] Compiling with preset: speed /Users/pestix/dumpster/nectar/.nectar/my63o/shift_unsigned.cpp:321:21: error: expected...
I have no idea what is line 13794, according to nectarjs, because it's the first line of this function: ```javascript function balanced(code) { var maching_pairs = { '[': ']', '(':...
``` function Bar() {} Bar.prototype = {b: 100}; var bar = new Bar(); console.log(bar.b); ``` NodeJS: ``` $ node prototype.js 100 ``` Nectar: ``` $ nectar --run prototype.js [*] Generating...
``` switch (true) { case 1 < 0: console.log('hanni'); break; case 0 < 1: console.log('nanni'); break; } ``` NodeJS: ``` $ node switch.js nanni ``` Nectar: ``` $ nectar --run...
``` console.log(1/0); ``` NodeJS: ``` $ node infinity.js Infinity ``` Nectar: ``` $ nectar --run infinity.js [*] Generating source file [*] Compiling with preset: speed /Users/pestix/dumpster/nectar/.nectar/dsjxg/infinity.cpp:321:18: warning: division by zero...