🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@depot/sdk-node

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@depot/sdk-node

Node SDK for the Depot API

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
2
Created
Source

Depot API SDK for Node.js

CI npm Powered by TypeScript

A Node.js SDK for the Depot API.

👉 API Documentation

Installation

Use pnpm or your favorite package manager:

pnpm add @depot/sdk-node

Usage

Each of the Depot API services is exposed on the main depot export. Authentication is provided via an Authorization header with an Organization Token, for each API request. The service paths match their corresponding gRPC service names.

Example

List projects:

import {depot} from '@depot/sdk-node'

const headers = {
  Authorization: `Bearer ${process.env.DEPOT_TOKEN}`,
}

async function example() {
  const result = await depot.core.v1.ProjectService.listProjects({}, {headers})
  console.log(result.projects)
}

License

MIT License, see LICENSE.

Keywords

depot

FAQs

Package last updated on 17 Sep 2025

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