Installation
Get MikroMeet running in minutes with your preferred method.
Prerequisites
Section titled “Prerequisites”- Node.js 24+ - Download
- A static file server for local testing
Quick Start
Section titled “Quick Start”Download the App and API
Section titled “Download the App and API”curl -sSL -o mikromeet_app.zip https://releases.mikrosuite.com/mikromeet_app_latest.zipcurl -sSL -o mikromeet_api.zip https://releases.mikrosuite.com/mikromeet_api_latest.zipunzip mikromeet_app.zip -d mikromeet_appunzip mikromeet_api.zip -d mikromeet_apiStart the API
Section titled “Start the API”cd mikromeet_api/*node mikromeet.mjsServe the App
Section titled “Serve the App”cd ../../mikromeet_app/*npx http-server . -a 127.0.0.1 -p 8000 -c-1Then open http://127.0.0.1:8000 in your browser.
Release Downloads
Section titled “Release Downloads”The latest release archives are available from GitHub Releases and these stable URLs:
https://releases.mikrosuite.com/mikromeet_app_latest.zip- static browser apphttps://releases.mikrosuite.com/mikromeet_api_latest.zip- Node API bundle
Check Installation
Section titled “Check Installation”After starting the server, check that it is working:
- Health Check: Visit
http://127.0.0.1:3000/health - Main App: Open
http://127.0.0.1:8000in your browser - Create a Meeting: Enter your name and click “New Meeting”
You should see a meeting room with your camera/microphone controls.
Troubleshooting
Section titled “Troubleshooting”Camera/Microphone Not Working
Section titled “Camera/Microphone Not Working”Problem: Browser blocks camera/microphone access
Solution:
- Use HTTPS in production (required for camera access)
- For local testing on
127.0.0.1, HTTP is fine - Check browser permissions for the domain
Port Already in Use
Section titled “Port Already in Use”Problem: Port 3000 is already taken
Solution:
MIKROMEET_PORT=8080 node mikromeet.mjsBuild Fails
Section titled “Build Fails”Problem: Node.js version too old
Solution:
# Check your versionnode -v
# Should be v24.0.0 or higher# Upgrade if needed: https://nodejs.org/Next Steps
Section titled “Next Steps”Now that MikroMeet is installed, configure it for your needs:
- Configuration Guide - Set up HTTPS and TURN servers
- Deployment Guide - Deploy to production