snoozestackdocs

Installation

Everything you install is served from snoozestack.com — the CLI and the JavaScript SDK as version-pinned npm tarballs, the Swift SDK as a Swift Package Manager URL. Nothing is on the npm registry or a package index. Your organization's admin account is your login everywhere: the console, the CLI, and the management API.

CLI#

terminal
npm install -g https://snoozestack.com/cli/snoozestack-0.108.0.tgz
snoozestack --help

JavaScript SDK — snoozestack-js#

terminal
npm install https://snoozestack.com/js/snoozestack-js-1.7.0.tgz

A typed, dependency-free client for your project's identity, functions, queues, and Signals — plus the defineTable() schema vocabulary the runtime builds your database from. Runs anywhere modern JavaScript does: Node 18+, browsers, Vite/Next.js apps. See snoozestack-js.

Swift SDK — snoozestack-swift#

In Xcode: File → Add Package Dependencies…, paste the URL below, and add the Snoozestack library to your app target. Or in a Package.swift:

Package.swift
dependencies: [
.package(
url: "https://snoozestack.com/swift/snoozestack-swift.git",
from: "1.8.0"
),
],
targets: [
.target(name: "MyApp", dependencies: [
.product(name: "Snoozestack", package: "snoozestack-swift"),
]),
]

A Swift client for iOS, macOS, tvOS, and watchOS. See snoozestack-swift.