Project Sharify - One Click Share

Easily share your VS Code projects with anyone using a simple share code.
No need for Git, ZIPs, or external hosting – just Sharify your project and collaborators can instantly download and open it with the same folder structure.
Demo
Share Project
Sharify generates a unique share code for your open project:
Join Project
Paste the code and instantly download and open the project with the same structure:

---
Features
- One-click Share – Generate a unique share code for the currently opened project.
- Easy Join – Collaborators paste the share code to automatically download the project.
- Preserves Folder Structure – Projects are shared and restored exactly as-is.
- Fast & Lightweight – No Git setup required, no zip files, no manual transfers.
Commands
| Command |
Description |
Start Projet Share |
Generate a share code for the current project. |
Join Project Share |
Paste a share code to instantly download and open it. |
Important: Excluded Files
When sharing a project, Sharify automatically excludes the following files and folders to reduce size and avoid sharing sensitive or generated files:
node_modules/ - Node.js dependencies
bower_components/ - Frontend dependencies
.git/, .svn/, .hg/ - Version control folders
.vscode/ - VS Code workspace settings
.DS_Store, Thumbs.db - System files
dist/, build/, out/, coverage/, .parcel-cache/, .cache/ - Compiled/build output directories
*.log - Log files
*.tmp, *.temp, *.swp, *.swo - Temporary files
*.env - Environment variable files (sensitive data)
*.lock - Lock files (package-lock.json, yarn.lock, etc.)
Note: These files are intentionally excluded for security and efficiency. After joining a project, you'll need to reinstall dependencies manually.
Privacy & Security
We take data privacy and security seriously.
- All uploaded project files are temporarily stored on a secure cloud server (e.g., Dropbox).
- Each project upload is automatically deleted after 12 hours to ensure your data is not stored permanently.
- Shared codes are unique and randomly generated, preventing unauthorized access.
- Sensitive files (like
.env or system files) are automatically excluded before upload.
- No project data is used, shared, or analyzed by any third party.
After Joining a Project
Once you've joined a project using a share code, you'll need to install dependencies and set up the project:
1 . For Node.js/JavaScript/TypeScript Projects:
- Open the integrated terminal in VS Code (
Ctrl+`` or Cmd+``)
- Run one of the following commands based on your package manager:
# If using npm
npm install
# If using yarn
yarn install
# If using pnpm
pnpm install
2 . For Python Projects:
pip install -r requirements.txt
Installation
From Marketplace Search Project Sharify in the VS Code Marketplace and click Install.