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

norelat

v1.0.0

Published

nore.lat anti-cheat & moderation SDK for roblox-ts (Flamework-friendly). Connects your game to your nore.lat dashboard with a license key.

Readme

norelat

nore.lat anti-cheat & moderation SDK for roblox-ts — Flamework-friendly.

It's a thin connector: it streams telemetry + heartbeats to your dashboard, sends up the violations you report, and enacts kicks from the dashboard. It holds no detection logic — keep your anti-cheat checks in your own server code and call Nore.report(...) from them.

Install

npm install norelat
npx norelat init

init asks for your license key (Dashboard → Network), verifies it against the server, drops the SDK into src/shared/nore/, and writes a git-ignored nore.config.ts with your key.

Use (Flamework)

import { OnStart, Service } from "@flamework/core";
import Nore from "shared/nore/NoreSDK";
import { NORE_LICENSE_KEY } from "shared/nore/nore.config";

@Service()
export class AntiCheat implements OnStart {
	onStart() {
		Nore.start({ licenseKey: NORE_LICENSE_KEY });
	}
}

Then, from your own checks:

Nore.report(player, "Speed hack"); // flag
Nore.kick(player, "Fly exploit"); // kick + record

Server-only. Enable Game Settings → Security → Allow HTTP Requests.

Device reporting (optional)

To show each player's device in the dashboard, add a client controller that reports the platform once on join:

// src/client/nore.client.ts
import { UserInputService, GuiService, ReplicatedStorage, Workspace } from "@rbxts/services";

const remote = ReplicatedStorage.WaitForChild("NoreDeviceReport", 30) as RemoteEvent | undefined;
if (remote) {
	const uis = UserInputService;
	let device = "Desktop";
	if (uis.VREnabled) device = "VR";
	else if (GuiService.IsTenFootInterface()) device = "Console";
	else if (uis.TouchEnabled && !uis.MouseEnabled) {
		const w = Workspace.CurrentCamera?.ViewportSize.X ?? 0;
		device = w >= 1024 ? "Tablet" : "Mobile";
	}
	remote.FireServer(device);
}

Config

| Option | Default | Notes | | ------------------- | ------------------ | ---------------------------------- | | licenseKey | — | required (apiKey also accepted) | | baseUrl | https://nore.lat | override for self-host | | telemetryInterval | 30 | seconds between heartbeats (min 5) | | autoKick | true | enact dashboard kicks |

CLI

npx norelat init --key nore_live_xxx --path src/shared/nore
NORE_API_URL=...  NORE_CDN_URL=...   # override endpoints (self-host)