Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
clarifai-web-grpc
Advanced tools
The official Clarifai gRPC client for use in client browser applications.
yarn add clarifai-web-grpc
import { ClarifaiStub } from "clarifai-web-grpc";
import { App } from "clarifai-web-grpc/proto/clarifai/api/resources_pb";
import { PostAppsRequest } from "clarifai-web-grpc/proto/clarifai/api/service_pb";
const client = ClarifaiStub.grpc();
// use client to create an App
const app = new App();
app.setId("cat-app");
app.setDefaultWorkflowId("General-Detection");
app.setDescription("An app for some cats");
const req = new PostAppsRequest();
req.setAppsList([app]);
const auth = {
"X-Clarifai-Session-Token": "MY-CLARIFAI-PERSONAL-ACCESS-TOKEN",
};
client.postApps(req, auth, (err, resp) => {
if (err) {
console.error(err);
} else {
console.log(resp.getAppsList()[0].getId()); // logs "cat-app"
}
});
Publishing the client to NPM involves merging a PR with 2 things:
version
field in package.json
to the appropriate version."GRPC clients version"
eg "GRPC clients version 9.4.0"
.FAQs
The official Clarifai gRPC-web client
We found that clarifai-web-grpc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.