Skip to content

julia-vscode/JSONRPC.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

243 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSONRPC

An implementation for JSON RPC 2.0. See the specification for details.

Currently, only JSON RPC 2.0 is supported. This package can act as both a client & a server.

Quick start

using JSONRPC

endpoint = JSONRPCEndpoint(pipe_in, pipe_out)
start(endpoint)  # starts the read/write tasks

# Send a request
result = send_request(endpoint, "method", params)

# Receive incoming messages
for msg in endpoint
    # handle msg
end

close(endpoint)

About

Julia implementation of JSON RPC

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages