Getting started with bopbee
Everything you need to know to start hosting your web projects with bopbee. From your first deployment to custom domains and team sharing.
Welcome to bopbee! This guide will walk you through everything you need to know to get your projects online.
What is bopbee?
bopbee is the fastest way to put your web projects online. Whether you're a student showcasing coursework, a developer sharing a prototype, or a designer presenting a portfolio—bopbee gets you a shareable link in seconds.
Your first deployment
Step 1: Prepare your project
Make sure your project has an entry point. For static sites, this is typically index.html. For applications, ensure you have the right structure:
Static sites:
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Welcome to my portfolio</h1>
<script src="script.js"></script>
</body>
</html>
Node.js apps:
// index.js
const express = require('express');
const app = express();
app.use(express.static('public'));
app.listen(3000, () => {
console.log('Server running on port 3000');
});
Step 2: Upload
Drag your project folder onto the bopbee upload area. That's it.
Step 3: Share
You'll immediately get a unique URL like your-project.bopbee.com. Share it anywhere—Slack, email, social media, your resume.
Supported technologies
bopbee automatically detects and runs:
| Technology | Detection |
|---|---|
| Static HTML | index.html in root |
| Node.js | package.json present |
| Python | requirements.txt or pyproject.toml |
| Go | go.mod present |
| Bun | bun.lockb present |
What's next?
Now that you know the basics, explore these features:
- Custom domains – Use your own domain
- Team collaboration – Work together on projects
- Git deployments – Deploy from GitHub
Happy shipping! 🚀