node-julia icon indicating copy to clipboard operation
node-julia copied to clipboard

Fast and simple access to Julia embedded in node

Results 19 node-julia issues
Sort by recently updated
recently updated
newest added

I just installed node-julia, but am unable to run any scripts using node-julia. I tried running a script that consists of `julia = require('node-julia'); console.log('test');` I get the following error...

I'm using node-julia to import a csv file into a dataframe in the following way: ``` javascript julia.eval("using DataFrames"); julia.eval("using GLM"); julia.eval('df = readtable("./app/uploads/'+req.body.fileName+'")'); ``` If I use `df` to...

Hello, Node exits with a segmentation fault (11) when I evaluate the following: ``` var julia = require('node-julia'); julia.eval('push!(LOAD_PATH, "")') julia.import("MyModule") ``` The segmentation fault does not occur at `push!(LOAD_PATH,...

julia.exec('pwd') loses last character of path ![node-julia-bug](https://cloud.githubusercontent.com/assets/7527171/13369302/c01b2878-dcfb-11e5-85c9-b099cd02dce9.JPG)

I can now install node-julia with your help. Now I want to expose Node-Julia functions as RESET API but I find issues when calling julia.eval(). any pointer? thanks. **Sample Codes**...

When using node Julia the .exec command to execute scripts works for Julia scripts that don't use any outside libraries. As in if I try to use the .exec command...

It is common practice to return enumeration-style results from Julia as symbols (`:symbol`). The parallel idiom in JavaScript is strings. The other way around is harder: passing a JavaScript string...

enhancement

Any, and Arrays of Union types and Any are currently not supported; they should be. This is fairly straightforward, but potentially costly as the result array will need to contain...

enhancement

If using nodejs [domains](https://nodejs.org/api/domain.html), then async callbacks should run in the context of the current domain. This doesn't appear to be happening with node-julia. Here's some unit tests. The first...

bug