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

Hi, is the project still alive ? Julia is now in version 1.2 and node-julia compatibility reaches 0.3.

https://nodejs.org/en/blog/vulnerability/june-2016-security-releases/ I see node-julia supports 0.4, I'm not sure it implies higher, but I guess it needs 0.6.x support for some x.

Hi. Installation (on Mac) fails with: ~~~ ../src/Import.cpp:39:20: error: use of undeclared identifier 'jl_is_function' if(val && jl_is_function(val)) filteredNames.push_back(*s); ~~~ I have Julia 0.5.0

The main node-julia Readme.md sends us to a [Runkit + npm sandbox where we can try it out live]() But the site doesn't work. I write julia = require('node-julia'); var...

Is node-julia compatible with Julia v0.6? Or will support for 0.6 be added soon?

When I run `npm install node-julia --save`, I get the following error. On Windows 7 Any help is greatly appreciated. ![image](https://cloud.githubusercontent.com/assets/17629404/15332630/5e7f0684-1c34-11e6-929f-23dfc72f1535.png)

``` error: cannot cast from type 'union jl_typemap_t' to pointer type 'jl_value_t *' (aka '_jl_value_t *') if(val && jl_is_function(val)) filteredNames.push_back(*s); ^~~~~~~~~~~~~~~~~~~ ../src/Import.cpp:14:28: note: expanded from macro 'jl_is_function' #define jl_is_function(v) ((jl_value_t*)jl_gf_mtable(v)->defs...

this is my fix to build NJ against latest Node/Julia releases on Mac

I tried installing node-julia and i get this error message. Does anyone know how to fix this issue. I am running version 3.6 of npm and version 0.3.12 of Julia

Typed array as input argument works correctly if returned from Julia: ``` > var a=julia.eval('[1.1,2.2,3.3]'); a Float64Array [ 1.1, 2.2, 3.3 ] > julia.exec('identity',a) Float64Array [ 1.1, 2.2, 3.3 ]...