Fuse Cloud Coming Soon

Upload JSON. Get a search API. Same fuzzy search you know.

Fuse Cloud turns your Fuse.js setup into a hosted search service. No infrastructure, no new mental model — if you know Fuse.js, you already know how this works.


The Problem

Fuse.js works great until your dataset outgrows the browser — too many records, too slow on mobile, or multiple users need to search the same data. At that point, the options are Algolia, Elasticsearch, or Meilisearch — all powerful, all complex, all a completely different system to learn.

Fuse Cloud fills the gap: scale your search without switching your mental model.


How It Works

  1. Upload your data — Push a JSON array, the same format you already use with Fuse.js.
  2. Get a search API — Fuse Cloud indexes your data and gives you a public key.
  3. Search from the client — Call the API directly from your frontend. No backend required.

What It Looks Like

import { FuseCloud } from "@fusejs/cloud"

const client = new FuseCloud({
  publicKey: "pk_abc123",
  index: "products"
})

const { results } = await client.search("iphone")
// → [{ id: "1", score: 0.02, item: { title: "iPhone 16 Pro", ... } }]

Same results format as Fuse.js. Same scoring. Same fuzzy matching.


Why Fuse Cloud

Fuse.js (local)Fuse CloudAlgolia / Meilisearch
Setup timeMinutesMinutesHours
InfrastructureNoneManagedSelf-hosted or vendor
Mental modelFuse.jsFuse.jsNew system
Best forSmall datasetsMedium–large datasetsLarge-scale search
PricingFreeFree tier + paid plansVaries

Pricing

Free tier included. Paid plans for higher usage. Pricing details coming soon.


Who This Is For

  • Documentation sites — power your search bar without loading the full dataset client-side
  • Product catalogs — fuzzy search across thousands of products from a static site or SPA
  • Internal tools — search across company data without building a search backend
  • Content libraries — articles, recipes, courses — anything you'd search with Fuse.js today

Who This Is Not For

  • Enterprise search — if you need faceting, analytics, A/B testing, and dedicated support, look at Algolia or Typesense
  • Real-time data — if your data changes every second, you need a different architecture
  • Sensitive/regulated data — if compliance requirements (HIPAA, SOC2) are a blocker, this isn't ready for that yet

Interested?

Fuse Cloud is in early development. Get early access and help shape what gets built.

Last Updated: