Sam Cao
Sam Cao
To enable `Float16Array` in Node.js: ```sh $ node --js-float16array Welcome to Node.js v22.9.0. Type ".help" for more information. > new Float16Array([2.65625, 58.59375]) Float16Array(2) [ 2.65625, 58.59375 ] > ```
Here is the test result in Node.js. ### Script ```js const fs = require("fs"); fs.exists("y:\\a.txt", (err, data) => { if (err) { console.error(err); return; } console.log(data); }); fs.readFile("y:\\a.txt", (err, data)...
I wonder if 5s on you machine is a consistent number. The lib loading should be less than 1s.
My other project Javet allows loading the binary from arbitrary folder with proper setting. Swc4j hasn't implemented that yet. But, it's possible to do that.
Actually, you are the first one asking for it. Let's see how it works.
I'm having the same issue with `[email protected]`.
Hi @brijeshb42 , thank you for the help. I just realized the issue might also be related to the react version. Here is the package.json for your reference. ```json "dependencies":...
I wonder as `@monaco-editor/react` is used, it might bring some side effects. The setup doesn't seem to be wrong to me because in the repo I provided `"monaco-editor": "0.49.0"` works...
I just created a repo [react-monaco-vim](https://github.com/caoccao/react-monaco-vim) to reproduce the issue. It directly comes from a boilerplate template [eruptionjs/core](https://github.com/eruptionjs/core) with the following changes. * Add Material UI v6 * Add Monaco...
Hi @brijeshb42 , thank you for the fix. I just updated the demo repo. 1. The cursor in normal mode is block now with `monaco-vim v0.4.2` and `monaco-editor v0.49.0`. 2....