How We Built BookMyCoworking: Building a Modern Coworking Marketplace
Finding and booking coworking spaces in India is often fragmented. Users typically have to visit multiple websites, compare prices manually, and contact workspace providers individually.
We started building BookMyCoworking to simplify that process by creating a single platform where users can discover and book flexible workspaces.
The Problem
We identified several common challenges:
- No single platform with verified listings.
- Comparing prices across providers is time-consuming.
- Meeting room and day pass bookings are inconsistent.
- Information about amenities is often incomplete.
Our Goal
Our objective was to create a platform where users can:
- Search coworking spaces.
- Compare amenities and pricing.
- Book day passes and meeting rooms.
- Discover private offices and managed workspaces.
- Access verified information in one place.
Technology Stack
Our platform is built using modern web technologies, including:
- React
- TypeScript
- Responsive UI
- Secure authentication
- Cloud-based backend
- SEO-friendly pages
User Experience
We focused on keeping the booking flow simple:
- Search by city or location.
- Compare available workspaces.
- View amenities and pricing.
- Select the preferred workspace.
- Complete the booking process.
Performance
Some areas we continue to improve include:
- Faster page loading.
- Better search filtering.
- Mobile-first experience.
- Structured data for SEO.
- Optimized images.
Lessons Learned
Building a marketplace involves more than writing code. It requires understanding user needs, collecting accurate workspace information, and creating an intuitive booking experience.
We're continuing to improve the platform with new features and better search capabilities.
If you're interested in exploring flexible workspaces across India, you can learn more about our project at:
https://www.bookmycoworking.com
We're always interested in feedback from developers, founders, and coworking operators.
Top comments (1)
Nice build — a marketplace lives or dies on booking flow trust, and the React/TS stack write-up shows you sweated the UX details.
Quick header scan of bookmycoworking.com: HSTS is properly configured (includeSubDomains — good), and nosniff/Referrer-Policy are set. Three gaps: no Content-Security-Policy, no X-Frame-Options, no Permissions-Policy. The one I'd close first for a marketplace: clickjacking. Without XFO or CSP frame-ancestors, your booking/payment pages can be iframed under a hostile page that siphons clicks on the "Book" button.
You're behind Cloudflare, so one Transform Rule (Modify Response Header) covers XFO + Permissions-Policy at the edge — no deploy. CSP takes a bit more care with a React SPA, but
default-src 'self'plus your API origins is a safe start.Happy to re-scan once it's live.