DaemonMode.jl
DaemonMode.jl copied to clipboard
Client-Daemon workflow to run faster scripts in Julia
Consider the script `test.jl` ```julia x = 123 @info x ``` Running the script like `julia --project=. --startup-file=no test.jl` yields the expected output ```julia [ Info: 123 ``` However, starting...
This pull request changes the compat entry for the `LoggingExtras` package from `^0.4, 0.5` to `^0.4, 0.5, 1`. This keeps the compat entries for earlier versions. Note: I have not...
Is this a possibility or the Julia team has got a better solution already? Using VSCode for Julia development is, at least in some way, becoming prominent for IDE developers...
When running following file with the DaemonMode client there is no output. Why? ``` > cat test.jl display(1+1) ```
I can work on this if approved by maintainers sample code: ```julia julia -e 'using DaemonMode; serve(sock="/tmp/julia-daemonmode-sock")' ``` related: - [method for serving a unix domain socket / named pipe](https://docs.julialang.org/en/v1/stdlib/Sockets/#Sockets.listen-Tuple{AbstractString})...
Hi, I use DaemonMode to run my unit tests. If I interrupt the execution with CTRL-C, the client aborts but the server sometimes continues running the tests. Is there any...
I tried to run a file containing the following ``` println("Hello World") import Pkg Pkg.status() ``` The output for DaemonMode (async=false; using runargs) looks like this: ``` StatusHello World `/..../Project.toml`...
I was very happy to discover DaemonMode pkg! One problem I just encounter is that it fails on eval() Is this a user error? Can I somehow make it work?...
@JuliaRegistrator register New version v0.1.10 ## 0.1.10 - (2021-11-11) --- ### New * Allow eval function, required for loading several MLJ models.
First, thank you for this excellent package! I wonder if it's possible to support remote execution via ssh tunneling. I saw there is the ability to execute a string with...