node-chakracore
node-chakracore copied to clipboard
Node.js on ChakraCore :sparkles::turtle::rocket::sparkles:
* **Version**: master * **Platform**: all * **Subsystem**: lib ChakraCore 1.9 currently has `Atomics.wake` which has been renamed to `Atomics.notify` which has been updated in ChakraCore 1.10. The shim is...
* **Version**: master * **Platform**: macOS * **Subsystem**: dgram I'm seeing consistent timeout failures for a few of the `test-dgram-*` tests: ``` not ok 401 parallel/test-dgram-send-empty-array not ok 402 parallel/test-dgram-send-empty-buffer...
Something non-obvious has changed between the current state of things and the nightly integration I'm about to complete, which causes shared array buffers to return a null pointer for their...
* **Version**: 10.0.0 * **Platform**: Ubuntu Linux 16.04 * **Subsystem**: Comparing the build times for `react-scripts-ts build` between node-chakracore v8.11.1 and v10.0.0 there's a huge difference in runtime. node-chakracore v8.11.1...
`this === global` gives `true` on Node.js (tested 7.4.0) where as node-chakracore gives `false` (tested 7.0.0-pre9 and v8.0.0-nightly201701238e66382a18) This breaks [vows](https://www.npmjs.com/package/vows) as it [decides what to pass on as context...
* **Version**: v8.10.0 * **Platform**: Windows 10 x64 * **Subsystem**: vm #### Node.js ``` $ node -v v8.11.1 $ node > vm.runInNewContext('0 & this', Object.create(null)) 0 ``` #### node-chakracore ```...
* **Version**: master * **Platform**: mac, linux * **Subsystem**: icu Recent upstream changes have caused issues with `global.Intl` on Mac and Linux. cctest is starting to fail with crashes: ```...
* **Version**: master * **Platform**: all * **Subsystem**: process A test was added that depends on `process.memoryUsage()` to verify memory growth. It depends on V8 APIs and seems to always...
* **Version**: master * **Platform**: Windows * **Subsystem**: net,test It looks like `sequential/test-net-bytes-per-incoming-chunk-overhead` is flaky in the NodeJS Windows CI: ``` not ok 515 sequential/test-net-bytes-per-incoming-chunk-overhead --- duration_ms: 11.614 severity: fail...
This [commit](https://github.com/nodejs/node/commit/4f67c6f667fa98e25ba311d3459fc8e270407250#diff-0cf206672499c2f86db4ffb0cc5b668b) added support for a new API `vm.script.createCachedData`. This calls chakrashim's [CreateCachedData](https://github.com/nodejs/node-chakracore/blob/master/deps/chakrashim/include/v8.h#L1004-L1008), which is not currently hooked up. A few things need to happen here: 1. We need to...