Getting Started
Getting started with Codmir
Codmir is a developer platform that provides the tools, workflows, and infrastructure you need to build and deploy modern applications faster. Get real-time collaboration, AI-powered development assistance, and seamless project management.
Codmir supports popular frameworks out-of-the-box, with SDKs for Next.js, React Native, and vanilla JavaScript. You can build and deploy without any upfront configuration.
During development, Codmir provides tools for real-time collaboration on your projects including AI chat, voice mode, and automatic error tracking.
Before you begin
To get started, create an account with Codmir. You can select the plan that's right for you.
Once you create an account, you can choose to authenticate either with a Git provider or by using an email. When using email authentication, you may need to confirm both your email address and a phone number.
1Install the Codmir CLI
While many of our instructions use the dashboard, you can also use Codmir CLI to carry out most tasks. To use the CLI, you'll need to install it:
pnpm install -g codmir2Authenticate with Codmir
After installing the CLI, authenticate with your Codmir account:
codmir loginThis will open your browser to complete the authentication flow. Once authenticated, your credentials will be stored securely on your machine.
3Set up your project
Navigate to your project directory and link it to Codmir:
cd your-project
codmir linkThis creates a .codmir configuration in your project and connects it to your Codmir dashboard.
4Add the Codmir SDK
Install the Codmir SDK in your project for error tracking, session replay, and AI features:
pnpm add @codmir/sdkThen import and initialize the SDK in your application:
See the SDK documentation for platform-specific setup guides.
5Start building
With the CLI authenticated and your project linked, you're ready to start building. Codmir provides several powerful features to accelerate your development:
Project Management
Use the Codmir dashboard to manage your projects, view analytics, track errors, and collaborate with your team. Access it at codmir.com/dashboard.
Chat Mode
Get AI-powered assistance directly in your workflow. Ask questions about your codebase, get code suggestions, debug issues, and more. Available in the dashboard and IDE extensions.
Voice Mode
Use voice commands to interact with Codmir's AI assistant. Perfect for hands-free coding sessions or when you want to describe complex requirements naturally.
Error Tracking
Automatically capture and track errors in your application with detailed stack traces, user context, and session replay. See issues before your users report them.
Previous
Codmir HomeNext
Installation