![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@roadwork/dapr-js-sdk
Advanced tools
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
Initialize through the following:
import Dapr from "@roadwork/dapr-js-sdk";
import express from "express"; // starts the dapr listener on the app port
const client = new Dapr("<dapr_url>", "<dapr_port>");
await client.initialize();
// Pub / Sub
const bindingReceive = (data: any) => { console.log(data); }
client.pubsub.subscribe("pubsub-name", "topic", bindingReceive.bind(this))
await client.pubsub.publish("pubsub-name", "topic", { hello: "world" });
// State
const keys = [{ "key": "value" }, { "key2": "value2" }]; // IKeyValuePair[]
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)
// Binding
const bindingReceive = (data: any) => { console.log(data); }
client.binding.receive("binding-name", bindingReceive.bind(this))
await client.binding.send("binding-name", { hello: "world" });
// Invoke
await client.invoker.invoke("app-id", "method", { hello: "world" });
const invokerListen = (req: express.Request, res: express.Response) => { console.log(data); }
client.invoker.listen("method", invokerListen.bind(this), options)
// Secrets
await client.secret.get("secret-store-name", "key");
await client.secret.getBulk("secret-store-name", [ "key1", "key2" ]);
// Actors
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");
The service invocation methods are created as a warpper on the Dapr Service Invocation API.
await client.invoker.invoke("app-id", "method", { hello: "world" });
On top of the invoking, this SDK also implements a trivial way to listen to app invocations. Instead of creating your own Express server, you can simply run the following commands which will listen to calls coming in on the provided endpoint.
const invokerListen = (req: express.Request, res: express.Response) => { console.log(data); }
client.invoker.listen("method", invokerListen.bind(this), options)
FAQs
An unofficial Dapr (https://dapr.io) SDK for Node.js
The npm package @roadwork/dapr-js-sdk receives a total of 2 weekly downloads. As such, @roadwork/dapr-js-sdk popularity was classified as not popular.
We found that @roadwork/dapr-js-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.