New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

@layers/amba-client

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@layers/amba-client

amba JavaScript SDK for end-user apps (auth, collections, storage, AI, push, events).

latest
Source
npmnpm
Version
0.1.3
Version published
Weekly downloads
0
-100%
Maintainers
3
Weekly downloads
 
Created
Source

@layers/amba-client

JavaScript/TypeScript SDK for Amba — the agent-native backend-as-a-service for mobile apps. Works in browsers, React Native, and modern Node.

Install

npm install @layers/amba-client

Usage

import { Amba } from '@layers/amba-client';

Amba.configure({
  projectId: 'your-project-id',
  apiKey: 'your-publishable-api-key',
});

await Amba.client.init();

// Auth
const session = await Amba.client.auth.signInWithEmail({
  email: 'user@example.com',
  password: 'hunter2',
});

// Collections
const posts = await Amba.collections.posts.find({
  where: { published: true },
  order: 'created_at desc',
  limit: 20,
});

License

Apache-2.0

FAQs

Package last updated on 12 May 2026

Related posts