Private by default · Public when you choose

Your private vault for
code snippets &
server credentials

Stop losing your best code to forgotten files and scattered notes. SaveSnippets keeps everything organized, searchable, 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 encrypted-at-rest vault. Reveal passwords only when you need them.
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.
12 Themes
Obsidian, Nord, Cyberpunk, Sakura, and 8 more. Your vault, your aesthetic. Theme preference is saved per browser.
Import & Export
Full JSON export of your snippets and servers. Import from a previous export or migrate from another tool. Your data is always yours.
How it works

Up and running in minutes

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

01
Create an account
Register with a username and email. Your vault is private to you from day one.
02
Add your snippets
Paste code, pick a language, add tags. Done in seconds. Or bulk-import a JSON export.
03
Find anything instantly
Search across all your code. Filter by language. Tag and click to copy.
04
Share what you want
Add the public tag to share a snippet with the community. Remove it 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.