Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/berlingoqc/ngx-jsonrpc
- Owner: berlingoqc
- Created: 2019-10-16T20:31:53.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:46:24.000Z (about 2 years ago)
- Last Synced: 2024-11-11T18:36:52.889Z (2 months ago)
- Language: TypeScript
- Size: 1.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
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;
}
}
```