New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@progressdb/node

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@progressdb/node

ProgressDB backend SDK (Node.js, TypeScript) - wraps frontend SDK with automatic signature generation and caching

latest
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

@progressdb/node

Node.js TypeScript SDK for backend callers of ProgressDB. Wraps frontend SDK with automatic signature generation.

Installation

npm install @progressdb/node

Quick Start

import ProgressDB from '@progressdb/node'
const db = ProgressDB({ 
  baseUrl: 'https://api.example.com', 
  apiKey: process.env.PROGRESSDB_KEY 
})

await db.createThread({ title: 'General' }, 'user-123')

API

Client

ProgressDB(options: BackendClientOptions)

Messages

  • listThreadMessages(threadKey, query, userId) - List messages in thread
  • createThreadMessage(threadKey, message, userId) - Create message
  • getThreadMessage(threadKey, messageKey, userId) - Get message
  • updateThreadMessage(threadKey, messageKey, message, userId) - Update message
  • deleteThreadMessage(threadKey, messageKey, userId) - Delete message

Threads

  • createThread(thread, userId) - Create thread
  • listThreads(query, userId) - List threads
  • getThread(threadKey, userId) - Get thread
  • updateThread(threadKey, thread, userId) - Update thread
  • deleteThread(threadKey, userId) - Delete thread

Health

  • healthz() - Basic health check
  • readyz() - Readiness check with version

Signature

  • signUser(userId) - Generate signature for user
  • clearSignatureCache(userId?) - Clear signature cache
  • getCacheStats() - Get cache statistics

Keywords

progressdb

FAQs

Package last updated on 18 Nov 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