CodesMeet Docs

Version 1.0 Beta

⚠️ Documentation Under Development: This documentation is currently in the building phase. Some sections may be incomplete or subject to change. We're actively working on providing comprehensive guides for all features!

Getting Started with CodesMeet

Welcome to CodesMeet! This guide will help you get up and running in minutes.

What is CodesMeet?

CodesMeet is an all-in-one platform where developers can code, collaborate, and connect. It combines powerful code editing tools with social features - think GitHub + VS Code + Stack Overflow + Social Media all in one place. Built by Salman Shaikh, a full-stack developer from Mumbai.

Current Features (100% Free)

  • Code Editor with HTML, CSS, JavaScript and live preview
  • Code Playground supporting Java, Python, PHP, C#, JavaScript, TypeScript
  • Real-time Coding Rooms with live chat and instant preview sync
  • Posts system - share code with like, comment, share, and fork
  • Connections - network with developers worldwide
  • Save, share, download, and fork any code

Prerequisites

  • A modern web browser (Chrome, Firefox, Safari, or Edge)
  • An internet connection
  • A free CodesMeet account (sign up in 30 seconds)

Your First HTML Project

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>My First CodesMeet Project</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: linear-gradient(135deg, #10b981, #06b6d4);
    }
    h1 {
      color: white;
      font-size: 3em;
    }
  </style>
</head>
<body>
  <h1>Hello CodesMeet! 🚀</h1>
</body>
</html>

Pro Tip

Press Ctrl+S to save your work. All code is automatically saved to your account.

New Here?

Check out the Code Editor first - it's the perfect place to start coding instantly!