Loom is a quick‑capture tool that lets developers record code walkthroughs, debug sessions, or API demos. This guide shows you how to install Loom, set up optimal settings for programming, record with terminal focus, and share videos in GitHub, Jira, or Slack. Follow the steps and use the screenshots to get results in minutes.
LoomSetup.exe file.
Loom.dmg from the same page.
Loom does not ship a native Linux client, but you can use the web version with Chrome or Chromium:
1. Open Chrome
2. Go to https://www.loom.com/
3. Click “Install Loom” → “Add to Chrome”
4. Accept the extension permissions.
| Option | Recommended Setting | Why |
|---|---|---|
| Hide cursor | Enabled | Reduces visual noise when scrolling through long files. |
| Show keystrokes | Enabled | Viewers see exact commands typed in the terminal. |
| Frame rate | 30 fps | Smooth enough for scrolling, low CPU usage. |
// Example: Simple Express server
const express = require('req
uire('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello Loom!');
});
app.listen(3000, () => console.log('Server running on :3000'));
Copy the share URL, add ?embed=1, then place an <iframe> inside the markdown.
<iframe src="https://www.loom.com/embed/abc123?embed=1"
frameborder="0"
webkitallowfullscreen
mozallowfullscreen
allowfullscreen
style="width:100%;height:400px;"></iframe>
<iframe> code.Paste the plain Loom link. Slack unfurls it automatically, showing a playable preview.
| Feature | Loom (Free) | Screenflow (Pro) | OBS Studio (Free) |
|---|---|---|---|
| Max video length | 25 min | Unlimited | Unlimited |
| Built‑in editor | Basic trim | Advanced cuts, transitions | None (requires external editor) |
| Keystroke overlay | Yes | No | Yes (via plugin) |
| Export formats | MP4, embed link | MP4, MOV, GIF | MP4, MKV |
| Price | Free / $8/mo Pro | $299 one‑time | Free |
For most developers, Loom’s free tier offers the quickest path to shareable code videos. Choose Screenflow only if you need heavy post‑production, and OBS if you prefer a fully open‑source stack.
No. The free plan allows up to 25 minutes per video, which is enough for most code walkthroughs.
Yes. Select “Screen + Audio” and choose the terminal window as the source.
Copy the share link, add “?embed=1” to the URL, then use an HTML <iframe> inside the markdown.
In Loom’s Settings → Advanced, toggle “Hide cursor” before you start recording.
Yes. After the video processes, click the three‑dot menu and select “Download” to get an MP4 file.
Using Loom for developers saves time and keeps knowledge inside your codebase. Install the app, tweak the settings, record clear walkthroughs, and embed them where your team works. The result is faster onboarding and fewer debugging sessions.