Marketplace: Extensions, Themes & Snippets
Discover Pocket Code's community marketplace: install extensions, customize your IDE with themes and share your own snippets.
The Pocket Code Marketplace
The marketplace is the heart of the Pocket Code community. Here you can find extensions, themes, snippets and templates created by developers from around the world.
What you'll find
π¨ Themes
Customize your editor with community-created themes:
- Dracula Pro β Vibrant colors on a dark background
- Tokyo Night β Inspired by Tokyo nights
- Catppuccin β Soft and easy on the eyes
- GitHub Dark β The classic GitHub theme
- One Dark Pro β Popular in VS Code, now on your phone
Installing a theme is simple: tap "Install" and it applies immediately.
β‘ Snippets
Ready-to-use code fragments that speed up your development:
// React Component snippet (rfc)
import React from 'react';
export default function ${1:Component}({ ${2:props} }) {
return (
<div>
${3:content}
</div>
);
}
# FastAPI endpoint snippet (fapi)
@app.${1:get}("/${2:path}")
async def ${3:handler}(${4:params}):
${5:pass}
return {"status": "ok"}
Popular packs:
- React/Next.js Snippets β 200+ React snippets
- Python Pro Pack β Django, FastAPI, Flask
- Rust Essentials β Structs, traits, async patterns
- SQL Toolkit β Optimized common queries
π§ Extensions
Add extra functionality to your IDE:
- Docker Toolkit β Manage containers from mobile
- Tailwind Assistant β Autocomplete for Tailwind CSS
- AI Prompt Pack β Curated prompts for coding AI
- REST Client β Send HTTP requests directly
- Git Lens β Visualize blame and inline history
- Prettier β Auto-format on save
π Project templates
Start projects quickly with complete templates:
- Next.js + Tailwind Starter
- Express + MongoDB API
- Flutter App Template
- Python CLI Tool
- React Native Expo
How to install
- Open Pocket Code and go to the Marketplace module (store icon)
- Search by name, category or tags
- Tap Install on what you want
- Done! It activates immediately
Create and share
Have a theme, snippet or extension you want to share? The process is simple:
Publish a theme
{
"name": "My Custom Theme",
"type": "theme",
"version": "1.0.0",
"colors": {
"background": "#1a1b26",
"foreground": "#c0caf5",
"accent": "#7aa2f7",
"comment": "#565f89",
"string": "#9ece6a",
"keyword": "#bb9af7"
}
}
Publish snippets
{
"name": "My Python Snippets",
"type": "snippets",
"language": "python",
"snippets": [
{
"prefix": "main",
"body": "if __name__ == '__main__':\n ${1:pass}",
"description": "Python main guard"
}
]
}
Publication process
- Prepare your package following the documentation
- Upload files from the app
- Fill in description and categories
- Submit for review (24-48 hours)
- Published for the whole community!
Moderation and quality
- All packages are manually reviewed
- Community reporting system
- Automatic updates
- Security verification for extensions
Marketplace numbers
- 500+ packages available
- 50K+ total installs
- 200+ active creators
- 4.7 average rating
The marketplace turns Pocket Code into an infinitely customizable IDE. Explore, install and share β the community grows every day.