Dapr Node.js SDK
This is an unofficial Dapr Node.js SDK that allows interfacing with Dapr applications. The release is to demonstrate the possible way of structuring the SDK for community use.
Note: This library is not ready for production yet
Examples
For an example of the library, see the Examples folder
Usage
Simple PubSub Listener
To create a simply pub sub listener, we can now execute the following:
import { DaprClient, DaprServer } from "@roadwork/dapr-js-sdk/grpc";
const server = new DaprServer(daprHost, daprPort, daprInternalServerPort);
server.pubsub.subscribe("pubsub-name", "topic", async (data: any) => console.log(data))
await server.startServer();
const client = new DaprClient(daprHost, daprPort);
client.pubsub.publish("pubsub-name", "topic", { hello: "world" });
General
We can utilize the library as shown in the code snippet below. Once implemented, start up your application with the dapr run
command.
Dapr Run:
dapr run --app-id hello-world --app-port 4000 --dapr-http-port 3500 --components-path ./components/ npm run start:dev
Library:
import { DaprClient, DaprServer } from "@roadwork/dapr-js-sdk/http";
import { DaprClient, DaprServer } from "@roadwork/dapr-js-sdk/grpc";
const daprHost = "127.0.0.1";
const daprPort = 3500;
const daprInternalServerPort = 4000;
const client = new DaprClient(daprHost, daprPort);
const server = new DaprServer(daprHost, daprPort, daprInternalServerPort);
await server.startServer();
server.pubsub.subscribe("pubsub-name", "topic", async (data: any) => console.log(data))
await client.pubsub.publish("pubsub-name", "topic", { hello: "world" });
const keys = [{ "key": "value" }, { "key2": "value2" }];
await client.state.save("store-name", );
await client.state.get("store-name", "key");
await client.state.delete("store-name", "key");
await client.state.getBulk("store-name", [ "key1", "key2" ]);
const stateOperations = [
{
operation: "upsert",
request: {
key: "key1",
value: "myData"
}
}
]
await client.state.transaction("store-name", stateOperations)
await client.binding.receive("binding-name", async (data: any) => console.log(data))
await client.binding.send("binding-name", "create", { hello: "world" });
await client.invoker.invoke("app-id", "method", HttpMethod.POST, { hello: "world" });
await client.invoker.listen("method", async (data: { body: object, query: string }) => console.log(data.body), { method: HttpMethod.POST });
await client.secret.get("secret-store-name", "key");
await client.secret.getBulk("secret-store-name", [ "key1", "key2" ]);
await client.actor.invoke("GET", "actor-type", "actor-id", "method");
await client.actor.stateTransaction("actor-type", "actor-id", [{
operation: "upsert",
request: {
key: "key1",
value: "myData"
}
}])
await client.actor.stateGet("actor-type", "actor-id", "key");
await client.actor.reminderCreate("actor-type", "actor-id", "name");
await client.actor.reminderGet("actor-type", "actor-id", "name");
await client.actor.reminderDelete("actor-type", "actor-id", "name");
await client.actor.timerCreate("actor-type", "actor-id", "name");
await client.actor.timerDelete("actor-type", "actor-id", "name");
Development
The notes below help for developing the library locally.
Installation
Run the following commands to configure the library
⚠ Make sure to have Dapr installed
npm install
npm run test
Running the Library
The command below runs the build process and will rebuild each time we change a file. This comes in handy when checking issues.
npm run start:dev
Publishing Package Package Maintenance
For publishing a new version, we update the version in package.json
and we run ./publish.sh
A custom script is utilized here since we have 2 libraries in one for HTTP and gRPC
Running Tests
Tests are written per protocol layer: http or grpc. This is done because Dapr requires endpoints to be registered for for pubsub and bindings, making us having to start up the test, initialize those endpoints and then run. Since Dapr is a sidecar architecture, we thus have to start 2 test suites seperately.
docker run -d --name emqx -p 1883:1883 -p 8081:8081 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 emqx/emqx
npm run test:dapr:grpc
npm run test:dapr:http
Reference
Service Invocation
The service invocation methods are created as a warpper on the Dapr Service Invocation API.
Invoking a method
await client.invoker.invoke("app-id", "method", { hello: "world" });
Listening to a method call
On top of the invoking, this SDK also implements a trivial way to listen to app invocations. Instead of creating your own web server, you can simply run the following commands which will listen to calls coming in on the provided endpoint.
const invokerListen = (req: IRequest, res: IResponse) => { console.log(data); }
await client.invoker.listen("method", invokerListen.bind(this), options)
State Management
Pub/Sub
Bindings
Actors
Secrets