NodeJS.jl icon indicating copy to clipboard operation
NodeJS.jl copied to clipboard

Node.js installation for julia

Results 4 NodeJS.jl issues
Sort by recently updated
recently updated
newest added

`node`'s dependency on the C++ standard library is not declared. ```julia julia> using NodeJS julia> run(`$(nodejs_cmd()) -v`) ERROR: IOError: could not spawn `/home/ikue/.julia/artifacts/9c278c61d6242d19deca58e582fc6a6f0a727de8/bin/node -v`: no such file or directory (ENOENT)...

This PR allows us to call [`npx`](https://docs.npmjs.com/cli/v9/commands/npx?v=true) command from NodeJS.jl After this PR is merged, we can use it as follows: ```julia using NodeJS open("sample.md", "w") do io write(io,"# Hello...

I think that once we have the NodeJS_14 and NodeJS_16 story in Yggdrasil up and running, we essentially no longer need this package here? So my current plan would be...

This is a big one, but it would be awesome if one could run nodejs code in the same process...

enhancement