Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/berlingoqc/ngx-jsonrpc

JSON-RPC client for Angular application
https://github.com/berlingoqc/ngx-jsonrpc

Last synced: about 21 hours ago
JSON representation

JSON-RPC client for Angular application

Awesome Lists containing this project

README

        

# NgxJsonrpc

This is a client for jsonrpc using HttpClient and WebSocket only.

### Create jsonrpc client with decorator

```
@Rpcimplement('system', 'system')
@Injectable()
export class RPCSystemCall {
ListMethods(): Observable {
return null;
}
ListNotifications(): Observable {
return null;
}
ListNamespace(): Observable {
return null;
}
}
```