Sn

Developer Tools

Your best code, one search away.

A fast personal vault for code snippets with syntax highlighting, tags and instant search — plus shareable read-only links for the ones worth showing off.

debounce.tsTypeScript
// the one you always re-google
export function debounce(fn: Function, wait = 200) {
let timer: number;
return (...args: unknown[]) => {
clearTimeout(timer);
timer = setTimeout(() => fn(...args), wait);
};
}
#typescript#utils#timingshared · 41 views

12 languages, properly highlighted

JavaScript, TypeScript, Python, Go, Rust, Java, Ruby, PHP, SQL, Bash, CSS and HTML — keywords, strings, comments and types in a familiar editor-dark palette.

Search the code itself

Instant search runs across titles, tags and every line of code. Remember half a function name? That's enough to find it.

Tags that organize themselves

Tag snippets as you save them, then filter the whole vault by language or tag with one click. No folders to maintain.

Share read-only links

Publish any snippet to a clean public page with one click — perfect for code reviews, Stack Overflow answers and teaching moments.

Know what gets read

Every shared snippet counts its views, so you know which of your snippets people actually come back to.

Private by default

Everything in your vault is yours alone. Nothing is public until you explicitly share it — and unsharing kills the link instantly.

How it works

1

Paste the snippet

Drop in the code you just got working, pick a language, and watch it highlight live as you type.

2

Tag it

Add a title and a few tags — react, regex, deploy — whatever your future self will type into the search box.

3

Find it in seconds, forever

Next month, search by title, tag or any line of the code itself. Copy it out and get back to work.

Simple, honest pricing

Start free. Upgrade when it earns its keep.

Free

$0

  • 20 snippets
  • 3 public shares
  • Syntax highlighting
Start free

Lifetime

Pay once

$19 one-time

  • Unlimited snippets
  • Unlimited public shares
  • 12 languages highlighted
  • Tags & instant search
  • Lifetime access
Demo mode — connect Stripe to charge real payments

Frequently asked questions

Which languages are highlighted?

Twelve: JavaScript, TypeScript, Python, Go, Rust, Java, Ruby, PHP, SQL, Bash, CSS and HTML. Each gets its own keyword and type rules, with strings, comments, numbers and function calls colored consistently across all of them.

Is my code private?

Yes. Snippets are private to your account by default. A snippet only becomes visible to others when you explicitly create a share link for it — and you can unshare at any time, which deletes the public page immediately.

How do share links work?

Sharing publishes a read-only snapshot of the snippet at a short URL like /snip/x7Kp2mQ. Visitors don't need an account, and you see a view count for every shared snippet. Edits you make later stay private until you re-share.

Is $19 really one-time?

Really. Lifetime means you pay once and keep unlimited snippets and unlimited shares forever — no subscription, no renewal, no surprise emails.

What does the free plan include?

The full editor and highlighter, up to 20 saved snippets and 3 active share links at a time. It's enough to make the vault a habit before you spend a cent.

Stop re-googling code you already wrote.

Free to start. $19 once when you outgrow it.

Open SnippetVault