Coming Soon

Uncommenter,
everywhere.

The same context-aware comment removal engine, available as a CLI tool, REST API, and npm package. Use it however you want.

CLI Tool

Strip comments from files and directories right from your terminal. Pipe it, script it, automate it.

$ uncommenter strip ./src --recursive
Processing 142 files...
✓ 847 comments removed across 98 files
✓ Output written to ./src-clean/

REST API

Send code, get clean code back. Simple JSON API with language auto-detection and configurable options.

POST /api/v1/uncomment
{
  "code": "const x = 1; // comment",
  "language": "javascript",
  "preserveDocstrings": true
}

npm Package

Import the engine directly into your Node.js projects. Same parser that powers the web tool.

import { uncomment } from 'uncommenter';

const result = uncomment(sourceCode, 'python');
console.log(result.processed);

Get notified when we launch

We're building these tools right now. Drop your email and we'll let you know when they're ready.