Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clarifai-web-grpc

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clarifai-web-grpc

The official Clarifai gRPC-web client

  • 9.11.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
181
increased by84.69%
Maintainers
1
Weekly downloads
 
Created
Source

clarifai-web-grpc

The official Clarifai gRPC client for use in client browser applications.

NPM

Installation

yarn add clarifai-web-grpc

Usage

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 to NPM

Publishing the client to NPM involves merging a PR with 2 things:

  1. Updates the version field in package.json to the appropriate version.
  2. Commit message should begin with "GRPC clients version" eg "GRPC clients version 9.4.0".

FAQs

Package last updated on 20 Dec 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc