Private by default · Public when you choose

Your private vault for
code snippets,
servers & passwords

Stop losing your best code to forgotten files and scattered notes. SaveSnippets keeps your snippets, server credentials, and website logins organized, searchable, encrypted, and always within reach.

Create Free Account Sign In
Debounce TS
function debounce(fn, ms) { let timer; return (...args) => { clearTimeout(timer); timer = setTimeout(fn, ms); }; }
Fetch with retry logic JS
async function fetchRetry(url, retries = 3) { for (let i = 0; i < retries; i++) { try { const res = await fetch(url); if (res.ok) return res.json(); } catch (e) { if (i === retries - 1) throw e; await sleep(300 * (i + 1)); } } } // tagged: public, fetch, utils
SQL Index SQL
CREATE INDEX idx_user_status ON orders (user_id, status) WHERE status != 'archived';
Supports every language you throw at it
JavaScriptTypeScriptPythonPHPGoRustC#JavaKotlinSwiftRubyBashSQLHTMLCSSJSONPowerShellDartElixirScalaJavaScriptTypeScriptPythonPHPGoRustC#JavaKotlinSwiftRubyBashSQLHTMLCSSJSONPowerShellDartElixirScala
VueReactLaravelDjangoFastAPINext.jsNuxtSveltehtmxDockerNginxTerraformAnsibleGraphQLgRPCRedisPostgresMySQLMongoDBPrismaVueReactLaravelDjangoFastAPINext.jsNuxtSveltehtmxDockerNginxTerraformAnsibleGraphQLgRPCRedisPostgresMySQLMongoDBPrisma
Features

Everything you need,
nothing you don't

Built for developers who are tired of hunting through old files, Slack messages, and browser bookmarks for that one snippet they know they saved somewhere.

Code Snippets
Store, search, and copy snippets in any language. Full syntax-aware previews, tags, and instant search across title, description, and code body.
Server Vault
Keep server IPs, SSH credentials, domains, and notes in one zero-knowledge encrypted vault. Reveal passwords only when you need them; they auto-hide again after 3 seconds.
Password Vault
Store website & service logins alongside your code — with a built-in crypto-secure password generator (length, character sets, ambiguity filter, live strength meter). Same zero-knowledge encryption as the Server Vault.
Public Sharing
Tag any snippet public and it instantly appears in the community feed — visible to anyone with an account.
Instant Search
Full-text search across title, description, code, and tags. Filter by language. Find what you saved in under a second.
Light & Dark
Carefully tuned light and dark themes that respect your eyes at 2 a.m. and in bright daylight. Your preference is saved per browser.
Import & Export
Full JSON export of your snippets, servers, and passwords. Import from a previous export or migrate from another tool. Your data is always yours.
Self-Destructing Snippets
Set any snippet to expire — anywhere from 10 minutes to a full year — or have it burn after the first read. Add a password for an extra layer when sharing publicly.
Raw Plaintext URLs
Every snippet gets a clean savesnippets.com/Abc123 URL that returns the raw code in plain text — perfect for curl | bash workflows, scripts, and CLI fetches.
How it works

Up and running in minutes

No extensions, no integrations, no configuration. Just sign up and start saving.

01
Create an account
Create a free account with a username and email. Everything in your vault stays private to you from day one.
02
Add your snippets
Drop in your code, pick a language, and add tags — saved in seconds. Already have snippets? Import a JSON file to get started instantly.
03
Find anything instantly
Search your entire vault by title, code, or tag. Filter by language and click any snippet to copy it instantly.
04
Share what you want
Add the public tag to any snippet to share it with the community. Remove it anytime to make it private again.

Start saving your snippets
today.

Free to use. No credit card. No nonsense.
Your code, organized and always within reach.