|
| 1 | +--- |
| 2 | +title: Fuse Cloud |
| 3 | +description: Hosted fuzzy search powered by Fuse.js. Upload JSON, get a search API. Same search you know, without managing infrastructure. |
| 4 | +--- |
| 5 | + |
| 6 | +# Fuse Cloud <Badge type="warning" text="Coming Soon" /> |
| 7 | + |
| 8 | +**Upload JSON. Get a search API. Same fuzzy search you know.** |
| 9 | + |
| 10 | +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. |
| 11 | + |
| 12 | +--- |
| 13 | + |
| 14 | +## The Problem |
| 15 | + |
| 16 | +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. |
| 17 | + |
| 18 | +**Fuse Cloud fills the gap:** scale your search without switching your mental model. |
| 19 | + |
| 20 | +--- |
| 21 | + |
| 22 | +## How It Works |
| 23 | + |
| 24 | +1. **Upload your data** — Push a JSON array, the same format you already use with Fuse.js. |
| 25 | +2. **Get a search API** — Fuse Cloud indexes your data and gives you a public key. |
| 26 | +3. **Search from the client** — Call the API directly from your frontend. No backend required. |
| 27 | + |
| 28 | +--- |
| 29 | + |
| 30 | +## What It Looks Like |
| 31 | + |
| 32 | +```js |
| 33 | +import { FuseCloud } from "@fusejs/cloud" |
| 34 | + |
| 35 | +const client = new FuseCloud({ |
| 36 | + publicKey: "pk_abc123", |
| 37 | + index: "products" |
| 38 | +}) |
| 39 | + |
| 40 | +const { results } = await client.search("iphone") |
| 41 | +// → [{ id: "1", score: 0.02, item: { title: "iPhone 16 Pro", ... } }] |
| 42 | +``` |
| 43 | + |
| 44 | +Same results format as Fuse.js. Same scoring. Same fuzzy matching. |
| 45 | + |
| 46 | +--- |
| 47 | + |
| 48 | +## Why Fuse Cloud |
| 49 | + |
| 50 | +| | Fuse.js (local) | Fuse Cloud | Algolia / Meilisearch | |
| 51 | +|---|---|---|---| |
| 52 | +| Setup time | Minutes | Minutes | Hours | |
| 53 | +| Infrastructure | None | Managed | Self-hosted or vendor | |
| 54 | +| Mental model | Fuse.js | Fuse.js | New system | |
| 55 | +| Best for | Small datasets | Medium–large datasets | Large-scale search | |
| 56 | +| Pricing | Free | Free tier + paid plans | Varies | |
| 57 | + |
| 58 | +--- |
| 59 | + |
| 60 | +## Pricing |
| 61 | + |
| 62 | +**Free tier included.** Paid plans for higher usage. Pricing details coming soon. |
| 63 | + |
| 64 | +--- |
| 65 | + |
| 66 | +## Who This Is For |
| 67 | + |
| 68 | +- **Documentation sites** — power your search bar without loading the full dataset client-side |
| 69 | +- **Product catalogs** — fuzzy search across thousands of products from a static site or SPA |
| 70 | +- **Internal tools** — search across company data without building a search backend |
| 71 | +- **Content libraries** — articles, recipes, courses — anything you'd search with Fuse.js today |
| 72 | + |
| 73 | +## Who This Is Not For |
| 74 | + |
| 75 | +- **Enterprise search** — if you need faceting, analytics, A/B testing, and dedicated support, look at Algolia or Typesense |
| 76 | +- **Real-time data** — if your data changes every second, you need a different architecture |
| 77 | +- **Sensitive/regulated data** — if compliance requirements (HIPAA, SOC2) are a blocker, this isn't ready for that yet |
| 78 | + |
| 79 | +--- |
| 80 | + |
| 81 | +## Interested? |
| 82 | + |
| 83 | +Fuse Cloud is in early development. Get early access and help shape what gets built. |
| 84 | + |
| 85 | +<div class="cloud-signup"> |
| 86 | + <a href="https://tally.so/r/Zjz8qo" class="cloud-btn" target="_blank" rel="noopener">Get Early Access</a> |
| 87 | + <p class="cloud-note">Or share your use case in the <a href="https://github.com/krisk/Fuse/discussions">GitHub Discussion</a>.</p> |
| 88 | +</div> |
| 89 | + |
| 90 | +<style> |
| 91 | +.cloud-signup { |
| 92 | + margin: 2rem 0; |
| 93 | + text-align: center; |
| 94 | +} |
| 95 | + |
| 96 | +.cloud-btn { |
| 97 | + display: inline-block; |
| 98 | + background: #9066b8; |
| 99 | + color: #fff !important; |
| 100 | + font-weight: 700; |
| 101 | + text-decoration: none !important; |
| 102 | + border-radius: 20px; |
| 103 | + padding: 14px 40px; |
| 104 | + font-size: 1.15rem; |
| 105 | + transition: background-color 250ms; |
| 106 | +} |
| 107 | + |
| 108 | +.cloud-btn:hover { |
| 109 | + background-color: #a684c6; |
| 110 | +} |
| 111 | + |
| 112 | +.cloud-note { |
| 113 | + margin-top: 1rem; |
| 114 | + font-size: 0.9rem; |
| 115 | + color: #666; |
| 116 | +} |
| 117 | + |
| 118 | +table { |
| 119 | + width: 100%; |
| 120 | +} |
| 121 | +</style> |
0 commit comments