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

kyo-sync-cli

v0.2.13

Published

KyoSync CLI for Roblox Studio bidirectional sync

Downloads

1,412

Readme

KyoSync CLI

Install Global

npm install -g kyo-sync-cli

If you are developing locally:

cd /Users/kyo/test3/ks-cli
npm install
npm link

New Project

ksync new my-game

ksync new now starts the daemon automatically by default. Use --serve false to scaffold only.

Resume Last Serve

ksync resumeserve

resumeserve starts serving the last project config used by ksync serve.

Existing Project

Auto-detect common folders:

cd existing-project
ksync adopt --project . --force true
ksync serve --config ./kysync.config.json

Or explicit source/destination:

cd existing-project
ksync adopt --project . --source ./src --destination ReplicatedStorage --force true
ksync serve --config ./kysync.config.json

Then in Roblox Studio:

  1. Open KyoSync plugin
  2. Host localhost
  3. Port 8080
  4. Click Connect
  5. Confirm sync direction in popup

kysync.config.json

codebase mappings define local folders to push and preview.

Example:

{
  "port": 8080,
  "syncDir": "./sync",
  "sourcemap": "./sourcemap.json",
  "deleteOrphansOnConnect": true,
  "bootstrapSourcemapOnStart": true,
  "propagateDeletes": false,
  "previewLimit": 300,
  "codebase": [
    { "source": "./sync", "destination": "", "destructive": false },
    { "source": "./src", "destination": "ReplicatedStorage", "destructive": false }
  ]
}

VS Code Setup

  1. Install extension: JohnnyMorganz.luau-lsp
  2. Open project folder /Users/kyo/test3
  3. Add these settings in VS Code settings.json:
{
  "luau-lsp.plugin.enabled": true,
  "luau-lsp.sourcemap.enabled": true,
  "luau-lsp.sourcemap.autogenerate": false,
  "luau-lsp.sourcemap.sourcemapFile": "sourcemap.json",
  "luau-lsp.sourcemap.includeNonScripts": true
}

Commands

ksync new <project-name> [--dir .] [--port 8080] [--force true] [--with-src true] [--serve true]
ksync adopt [--project .] [--port 8080] [--force true] [--source ./src] [--destination ReplicatedStorage]
ksync init [--config ./kysync.config.json] [--force true]
ksync serve [--config ./kysync.config.json] [--port 8080] [--dir ./sync] [--sourcemap ./sourcemap.json]
ksync resumeserve [--port 8080]
ksync build [--config ./kysync.config.json] [--port 8080] [--source ./sync] [--from-sourcemap ./sourcemap.json]
ksync push --config ./kysync.config.json --source <path> --destination <Service/Folder> [--destructive true] [--port 8080]
ksync plugin-build [--project ./kyo-sync.plugin.project.json] [--output ./KyoSyncPluginPlace.rbxlx]

Publish To npm

cd /Users/kyo/test3/ks-cli
npm login
npm run check
npm publish --access public