Socket
Book a DemoInstallSign in
Socket

@mobtakronio/schemakit-client

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mobtakronio/schemakit-client

Framework-agnostic REST client for SchemaKit backends (plug-and-play, SSR-ready)

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@mobtakronio/schemakit-client

Framework-agnostic, plug-and-play REST client for SchemaKit backends. Works in React, Vue, Next.js, Nuxt, or plain TypeScript. SSR-ready and zero framework dependencies.

Quick start

import { createSchemaKitClient } from '@mobtakronio/schemakit-client';

const client = createSchemaKitClient({
  baseUrl: '/api',
  tenantId: 'acme',
  getAuthHeaders: () => ({ Authorization: `Bearer ${localStorage.getItem('token') ?? ''}` })
});

const User = client.entity<'User'>('User');
const users = await User.list({ page: 1, limit: 20 });

API

  • createSchemaKitClient(options)
  • client.entity(name).{ list, get, create, update, delete }
  • client.view(entityName, viewName).run(params)
  • client.request({ method, path, query?, body? })
  • client.with(overrides)

See source for full options.

Keywords

schemakit

FAQs

Package last updated on 19 Aug 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