🌐
Prettier
prettier.io › blog › 2023 › 11 › 30 › cli-deep-dive
Prettier's CLI: A Performance Deep Dive · Prettier
November 30, 2023 - The cache file is stored under ./node_modules/.cache/prettier by default, and its location can be customized by passing the --cache-location <path> flag. I'll say it again: if performance matters for your scenario the single biggest thing to do to speed things up here is to remember the cache file between runs. ... An optimization opportunity would be speeding up hashing in Node. Calculating the same hashes in Bun seems ~3x faster, so surely there's some room for optimization there.
🌐
Stack Overflow
stackoverflow.com › questions › 71529331 › is-there-a-way-of-running-prettier-faster
performance - Is there a way of running Prettier faster? - Stack Overflow
hey @ErikI, it's a big project, that's why it takes more time for me. We also have Prettier plugin in VSCode, but some times we want to check the whole project like in CI for example.
🌐
GitHub
github.com › fsouza › prettierd
GitHub - fsouza/prettierd: prettier, as a daemon, for improved formatting speed. · GitHub
prettier, as a daemon, for improved formatting speed. - fsouza/prettierd
Starred by 974 users
Forked by 31 users
Languages   TypeScript 99.4% | JavaScript 0.6%
🌐
Deno
david.deno.dev › posts › faster-prettier-with-dprint
Speeding up Prettier locally and on your CI with dprint
We've seen how we can use dprint's CLI to speed up formatting with Prettier. For an example repo, see faster_prettier_example.
🌐
Medium
medium.com › navara › biome-the-faster-lint-and-formatting-alternative-to-prettier-12fcf8b122b9
Biome: The Faster Lint and Formatting Alternative to Prettier
January 12, 2024 - The benchmark results consistently show that Biome outperforms Prettier in both formatting and linting. Biome is significantly faster than Prettier and dprint for formatting and faster than ESLint for linting.
🌐
E18e
e18e.dev › blog › prettier-speed-up.html
Improving Prettier performance with the new CLI | e18e
All matched files use Prettier code style! PRETTIER_EXPERIMENTAL_CLI=1 npx prettier --check . 54.18s user 4.76s system 647% cpu 9.096 total · That's 9 seconds in the new CLI, vs 29 seconds in the old CLI! If we run this again, it'll get even faster now that the cache is populated:
🌐
Prettier
prettier.io › blog › 2025 › 06 › 23 › 3.6.0
Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins! · Prettier
June 23, 2025 - First, we're shipping a new experimental high-performance CLI behind a feature flag (--experimental-cli). This CLI was previously only available in prettier@next, but now you can enable it simply by using a flag. We encourage you to try it out and share your feedback!
🌐
JSDev
jsdev.space › speedup-prettier
5 Proven Ways to Speed Up Prettier Format-On-Save in VS Code
Optimize Prettier’s format-on-save in VS Code with five proven tips. Improve configuration, manage resources, and reduce delays for a smoother coding flow.
Find elsewhere
🌐
Better Programming
betterprogramming.pub › run-your-prettier-scripts-even-faster-ef85381cf28e
Run Your Prettier Scripts Even Faster | by Nerea Leguinazabal | ...
September 26, 2022 - But, wait… why is it even crashing? Is Prettier so heavy? Well, it can be when working with the default configuration and using the prettier plug-in for Apex. When running the formatting script, it takes around a second to go through each file, and this can be an issue when dealing with large projects.
🌐
Solberg
solberg.is › prettier-is-fast
Prettier is Fast - Jökull Sólberg
December 19, 2025 - Today I learned Prettier is now as fast as the new breed of formatters written in Rust. The key is to combine their new OXC plugin with an experimental, high-pe
🌐
Oxycon Blog
blog.oxyconit.com › biomejs-a-35x-faster-alternative-to-prettier-for-formatting-and-linting
BiomeJS - A 35x faster alternative to Prettier for formatting and linting
June 30, 2024 - prettier eslint prettier-plugi... eslint-react-refresh ... Now the dependency list is much smaller! BiomeJS is a powerful tool that offers a faster alternative to Prettier....
🌐
freeCodeCamp
freecodecamp.org › news › alternatives-to-prettier
Alternatives to Prettier – Popular Code Linting and Formatting Tools
March 15, 2023 - In this guide, we will talk about the Prettier code formatter. We will also talk about alternatives to Prettier like JsFmt, StandardJS, EsLint + EditorConfig, and Beautifier.
🌐
npm
npmjs.com › package › pretty-quick
pretty-quick - npm
Runs Prettier on your changed files.
      » npm install pretty-quick
    
Published   Jun 02, 2025
Version   4.2.2
Author   Lucas Azzola
🌐
GitHub
github.com › prettier › prettier-cli
GitHub - prettier/prettier-cli: A faster CLI for Prettier.
A faster CLI for Prettier. Contribute to prettier/prettier-cli development by creating an account on GitHub.
Starred by 40 users
Forked by 10 users
Languages   JavaScript 50.9% | TypeScript 48.9% | JavaScript 50.9% | TypeScript 48.9%
🌐
Hacker News
news.ycombinator.com › item
Speeding up Prettier locally and on your CI with dprint | Hacker News
April 30, 2022 - Edit: I'm especially impressed with its dependency management. Import maps are a breeze and a welcome change to... whatever is going on in Nodeland. Like, I don't have to set up my imports both in tsconfig.json and package.json and walk this delicate tightrope to make sure that things don't ...
🌐
GitHub
github.com › prettier › prettier › issues › 4776
Performance on big files · Issue #4776 · prettier/prettier
May 16, 2018 - I just found out that the performance metrics of prettier inside of Nuclide at Facebook: p50: 122ms p75: 203ms p90: 377ms It's not awesome but totally reasonable. However, for big files like this one (3k lines) it consistently takes mult...
Author   vjeux
🌐
Prettier
prettier.io › docs › install
Install · Prettier
If you forget to install Prettier first, npx will temporarily download the latest version. That’s not a good idea when using Prettier, because we change how code is formatted in each release! It’s important to have a locked down version of Prettier in your package.json. And it’s faster, too.
🌐
JavaScript in Plain English
javascript.plainenglish.io › how-to-make-prettier-stop-thinking-so-hard-3976937aae99
How to Make Prettier Stop Thinking So Hard | by Amit Kumar | Nov, 2025 | JavaScript in Plain English
November 11, 2025 - Most frontend developers think Prettier is slow because it’s doing too much. Enable format-on-save, and suddenly every keystroke creates this pause. A half-second delay. Sometimes a full second.