Back to articles
Tired of Codebases with Mismatched File Casing? 🛠️ Meet CaselyJS (v1.0.1)
How-ToTools

Tired of Codebases with Mismatched File Casing? 🛠️ Meet CaselyJS (v1.0.1)

via Dev.toVikash Kumar

Every developer has been there. You join a new project, or you're cleaning up a legacy codebase, and you see it: UserService.ts product_api.js get-orders.ts Final_component.jsx It’s a visual mess, and it makes finding files in your editor a constant friction point. Manually renaming dozens or hundreds of files is a tedious, error-prone nightmare. I built CaselyJS to solve this problem permanently, and I just upgraded it to v1.0 with a full TypeScript rewrite and a brand-new CLI. ⚡ The 10-Second Quick Start (No Install Required) The best way to try CaselyJS is with npx . You can clean up your current project right now without adding a single dependency to your package.json . # Preview changes (dry run) in the current directory npx caselyjs --dry # Re-case all files in the ./src folder to kebab-case npx caselyjs ./src --case kebab ✨ What’s New in v1.0? I’ve transformed CaselyJS from a simple string utility into a robust, high-performance CLI tool designed for large-scale codebase refacto

Continue reading on Dev.to

Opens in a new tab

Read Full Article
3 views

Related Articles