add docs link to rpc-server npm package

This commit is contained in:
Simon Laux
2026-01-14 21:43:38 +01:00
parent 72eef59f25
commit bfa8da092c

View File

@@ -5,6 +5,8 @@ it does not use NAPI bindings but instead uses stdio executables
to let you talk to core over jsonrpc over stdio. to let you talk to core over jsonrpc over stdio.
This simplifies cross-compilation and even reduces binary size (no CFFI layer and no NAPI layer). This simplifies cross-compilation and even reduces binary size (no CFFI layer and no NAPI layer).
📚 Docs: <https://js.jsonrpc.delta.chat/>
## Usage ## Usage
> The **minimum** nodejs version for this package is `16` > The **minimum** nodejs version for this package is `16`
@@ -25,7 +27,7 @@ async function main() {
main(); main();
``` ```
For a more complete example refer to https://github.com/deltachat-bot/echo/tree/master/nodejs_stdio_jsonrpc. For a more complete example refer to <https://github.com/deltachat-bot/echo/tree/master/nodejs_stdio_jsonrpc>.
## How to use on an unsupported platform ## How to use on an unsupported platform