SkillAgentSearch skills...

Kinto.js

An Offline-First JavaScript Client for Kinto.

Install / Use

/learn @Kinto/Kinto.js
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Kinto.js

Greenkeeper badge

Build Status Coverage Status

An Offline-First JavaScript client for Kinto.

Note: This library also includes a pure JS HTTP client for Kinto. You can learn more in the docs.

The idea is to persist data locally in the browser by default, then synchronizing them with the server explicitly when connectivity is guaranteed:

const kinto = new Kinto({ remote: "https://demo.kinto-storage.org/v1/" });
const posts = kinto.collection("posts");

// Create and store a new post in the browser local database
await posts.create({ title: "first post" });

// Publish all local data to the server, import remote changes
await posts.sync();

Documentation

Related Skills

View on GitHub
GitHub Stars328
CategoryDevelopment
Updated4d ago
Forks75

Languages

TypeScript

Security Score

85/100

Audited on Apr 2, 2026

No findings