npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@waelio/sync

v1.0.6

Published

Cloudflare Workers sync app for the Waelio ecosystem

Readme

@waelio/sync

NPM version NPM weekly downloads License: MIT

A high-performance, edge-deployed synchronization API built on Cloudflare Workers and Hono for the Waelio ecosystem.


📖 Introduction

@waelio/sync acts as the central nervous system for data synchronization across the Waelio platform. Designed to run entirely on the edge, it leverages Cloudflare Workers to deliver millisecond response times globally. By pairing the ultra-lightweight Hono framework with Cloudflare's KV namespaces, this package ensures state and configuration data stay synchronized efficiently and securely.

Whether it's routing dashboard analytics, handling CLI webhooks, or syncing cross-device configurations, @waelio/sync is the dedicated worker bridging those connections.

✨ Features

  • Edge-First Architecture: Deploys directly to Cloudflare Workers for zero cold-start, low-latency execution.
  • Hono Framework: Uses hono for fast, lightweight routing with standard Web API constructs (c.json(), c.text()).
  • KV Storage Integration: Built-in support for Cloudflare KV (SYNC_KV), enabling rapid key-value data persistence and retrieval across edge nodes.
  • Strictly Typed: 100% TypeScript compliance ensuring robust environment bindings and strict payload validation.
  • No Build Step: Takes advantage of Wrangler's on-the-fly TypeScript compilation.

🚀 Getting Started

Prerequisites

To develop or deploy this worker, you'll need:

  • Node.js (v18 or higher)
  • npm, pnpm, or yarn
  • Cloudflare Wrangler CLI installed (npx wrangler)

Local Development

Running the application locally spins up a Wrangler development server on port 8787 with simulated KV storage.

# Start the local development server
npm run dev

Deployment

Deploying the worker to Cloudflare's global edge network is handled entirely by Wrangler:

# Build and deploy to Cloudflare
npm run deploy

Note: Because Wrangler handles transpilation automatically, there is no separate compile step needed before deploying. However, you can ensure your types are clean by running npx tsc --noEmit.

🛠 Architecture & Bindings

The Hono Context

This application relies on the @cloudflare/workers-types package to provide ambient globals and environment bindings. In src/index.ts, the environment is typed like so:

type Bindings = {
  SYNC_KV: KVNamespace;
};

const app = new Hono<{ Bindings: Bindings }>();

KV Namespace (SYNC_KV)

The SYNC_KV binding is declared in the wrangler.toml file. It allows the worker to read and write globally distributed data.

Example usage inside a route:

app.get('/sync/status', async (c) => {
  const status = await c.env.SYNC_KV.get('system_status');
  return c.json({ status: status || 'unknown' });
});

Managing Secrets

Never hard-code credentials in the repository. Instead, inject secrets into your worker securely using Wrangler:

npx wrangler secret put MY_API_KEY

These secrets become available on the c.env object just like your KV bindings.

📦 About the Waelio Ecosystem

@waelio/sync is a core utility package maintained by Waelio. It works in tandem with other ecosystem tools like @waelio/cli, @waelio/ustore, and @waelio/agent to deliver seamless developer experiences and automated site scaffolding pipelines.

For package statistics and more information, visit the Waelio Dashboard.

📄 License

This project is licensed under the MIT License.