The editor that lives in your browser and works with your actual files.

Open any folder from your filesystem, edit code and markdown, preview in real-time — all without ever leaving the tab. No install. No account. No server.

hotnote editor screenshot showing code editing with sidebar and syntax highlighting

Everything you need, and quite a lot more!

Built for developers who want a lightweight editor without the ceremony of a native app or a cloud IDE.

Local Filesystem Access

Open entire folders directly from your disk using the File System Access API. Read, edit, and save files with no upload, no sync, no cloud.

Markdown Preview

Full GFM rendering with tables, task lists, GitHub-style alerts, and fenced code blocks with syntax highlighting.

Syntax Highlighting

20+ languages including JavaScript, TypeScript, Python, Rust, Go, CSS, HTML, JSON, Markdown, and more.

JSON & CSV Table View

Automatically renders JSON arrays and CSV files as sortable, paginated data tables. Nested objects open in a modal.

JSON Tree View

Explore deeply nested JSON structures with a collapsible tree — perfect for API responses and config files.

Split Pane Mode

Open two files side by side with a draggable divider. Markdown files auto-open as source + live preview. Each pane keeps independent mode, history, and autosave.

Autosave

Enable autosave and changes are written back to disk 2 seconds after you stop typing. No Ctrl+S required.

Session Restore

Reopen the browser and hotnote offers to resume your last folder. Pick up exactly where you left off.

Git Diff View

See what changed since HEAD — inline diffs with +/- gutter, sidebar indicators, and a changes-only filter. Reads .git/ directly. Zero backend required.

See it in action.

Toggle between raw source and rendered markdown. The app also supports inline git diffs and a changes-only file filter.

README.md
# hotnote

## What is this?

A **minimalist** browser-based editor that opens
files directly from your filesystem.

## Features

- Local filesystem access (no upload)
- Markdown preview with GFM support
- 20+ languages with syntax highlighting
- Autosave, split pane, JSON tree view

Works in `Chrome` and `Edge` only.

hotnote

What is this?

A minimalist browser-based editor that opens files directly from your filesystem.

Features

  • Local filesystem access (no upload)
  • Markdown preview with GFM support
  • 20+ languages with syntax highlighting
  • Autosave, split pane, JSON tree view

Works in Chrome and Edge only.

Navigate deeply nested JSON.

Any .json file opens as a collapsible tree. Expand and collapse objects and arrays to explore structure at any depth without losing your place.

Arrays of objects get a one-click jump to the Table view, and nested objects inside a table cell open in a focused modal.

api-response.json
{
"users":[4 items
{
"id":1,
"name":"Alice",
"role":"admin",
"active":true
},
{4 keys }
{4 keys }
{4 keys }
],
"meta":{
"total":284,
"page":1,
"per_page":25
}
}

Spreadsheet view, zero configuration.

CSV files open as a sortable, paginated table automatically. JSON arrays of objects get the same treatment — including type-aware rendering for numbers, booleans, and nulls.

Nested objects and arrays inside a cell are shown as a badge you can click to drill into, rather than a wall of escaped text.

users.csv
284 rows · 6 columns Showing 1–5
id name email role score active
1Alicealice@acme.comadmin98true
2Bobbob@acme.comeditor74false
3Carolcarol@acme.comviewer88true
4Davedave@acme.comadmin91true
5Eveeve@acme.comeditor67false
Page 1 of 57

Git diffs. No terminal, no extensions.

HotNote reads your .git/ folder directly — packed objects and all. No backend. No shell.

  • Orange dots in the sidebar mark modified files and folders
  • Unified diff with +/- gutter and syntax-highlighted additions
  • Filter the file tree to show only changed files
  • Works with both loose and packed git objects
  • CVD-safe: glyphs + borders, not just color
greet.js
@@ -12,7 +12,8 @@ module.exports = { greet };
1212  function greet(name) {
13- return "Hello " + name;
13+ const msg = `Hello, ${name}!`;
14+ return msg;
1415  }

Two panes. One focus.

Open any two files side by side with a draggable divider.

  • Markdown files open as source + live preview automatically
  • Each pane has independent mode, history, and autosave
  • Sync edits when both panes show the same file
  • Drag the divider to resize
README.md
# hotnote

## Features

- Local files
- Markdown preview
- Split pane mode
- 20+ languages
README.md

hotnote

Features

  • Local files
  • Markdown preview
  • Split pane mode
  • 20+ languages

Designed for everyone.
Including the 300 million.

Approximately 300 million people worldwide have some form of color vision deficiency (CVD). Most software fails them by encoding critical information in color alone — red for errors, green for success, colored tabs for state.

Hotnote takes a deliberate greyscale approach to its UI chrome. Active states use border insets and contrast, not color. Information is never conveyed by hue alone. The logo gradient is the single exception — it is branding, not information.

Syntax colors are supplementary. They add richness for those who see them, but the editor remains fully functional without them.

Simulate color vision deficiency on the "typical editor" column:

Typical editor (VS Code Dark+)

function fetchData(url) {
    // fetch from remote API
    const res = await fetch(url);
    const count = res.status;
    return count === 200;
}

hotnote

function fetchData(url) {
    // fetch from remote API
    const res = await fetch(url);
    const count = res.status;
    return count === 200;
}

Under Deuteranopia or Protanopia simulation, the green comment and orange/yellow identifiers in the left column shift toward indistinguishable brownish tones. The hotnote column is unchanged — and even if its syntax colors blurred, the code structure remains legible because color is never the only signal.

We love lean software.

There is something deeply satisfying about a tool that does exactly what it says, loads in under a second, and never asks you to create an account.

Hotnote was inspired by the spirit of MS-DOS Edit and Windows 3.11-era utilities — small, fast, focused. The entire app is plain HTML, CSS, and JavaScript. No bundler. No framework. No node_modules in production. The source code is readable by any developer in any text editor.

When something breaks, you can open DevTools and debug it. When you want to understand it, you can just read it. That is a feature.

Pure HTML / CSS / JS
No build step
No frameworks
No backend
No account required
PWA / Offline capable
Zero external requests at runtime

Honest about limitations.

The File System Access API is powerful but not universally supported yet.

Chrome 86+

Full support, recommended

Edge 86+

Full support

Firefox

No File System Access API

Safari / Mobile

Partial / no support

Your files are waiting.

Open a folder. Start editing. Close the tab when you're done. That's it.

Open App →