🌐
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 - This plugin includes two new parsers oxc (JavaScript syntax) and oxc-ts (TypeScript syntax), to use this plugin: ... Due to package size limitations, this plugin is not included in the prettier package, it needs to be installed separately.
🌐
GitHub
github.com › prettier › prettier › tree › main › packages › plugin-oxc
prettier/packages/plugin-oxc at main · prettier/prettier
// prettier.config.mjs import * as prettierPluginOxc from "@prettier/plugin-oxc"; /** * @see https://prettier.io/docs/configuration * @type {import("prettier").Config} */ const config = { overrides: [ { files: ["**/*.{js,mjs,cjs,jsx}"], parser: "oxc", plugins: [prettierPluginOxc], }, { files: ["**/*.{ts,mts,cts,tsx}"], parser: "oxc-ts", plugins: [prettierPluginOxc], }, ], }; export default config;
Author   prettier
🌐
npm
npmjs.com › package › @prettier › plugin-oxc
prettier/plugin-oxc
Prettier Oxc plugin.. Latest version: 0.1.3, last published: 3 months ago. Start using @prettier/plugin-oxc in your project by running `npm i @prettier/plugin-oxc`. There are 23 other projects in the npm registry using @prettier/plugin-oxc.
      » npm install @prettier/plugin-oxc
    
Published   Dec 03, 2025
Version   0.1.3
Author   fisker Cheung
🌐
DEV Community
dev.to › dmnchzl › oxlint-x-prettier-the-modern-approach-to-starting-your-javascript-project-3p1h
Oxlint x Prettier: The Modern Approach To Starting Your JavaScript Project - DEV Community
December 3, 2025 - NB: If you want to keep Prettier, since version 3.6, it's possible to go further with this new approach by using the official @prettier/plugin-oxc plugin.
🌐
npm
npmjs.com › package › prettier-oxc-parser
prettier-oxc-parser - npm
oxc is a fast, really fast. And with the addition of raw transfer, the cost of passing the AST from Rust to JavaScript is close to 0. Raw transfer is only available in Node >= 22. While Prettier with this plugin is far from the performances of pure native formatters like Biome, it give a significant performance improvement for large TS projects while keeping one tool to format all files types.
      » npm install prettier-oxc-parser
    
Published   Jul 18, 2025
Version   0.2.0
Author   Arnaud Barré
🌐
GitHub
github.com › oxc-project › oxc › issues › 15665
oxfmt: prettier plugins · Issue #15665 · oxc-project/oxc
November 13, 2025 - Aim to enable the use of existing Prettier plugins like prettier-plugin-svelte. The current ecosystem primarily consists of two types of plugins. For supporting files not supported by Prettier (original motivation of plugin) prettier-plu...
Author   Boshen
🌐
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-performance CLI.
🌐
Prettier
prettier.io › blog
Prettier blog · Prettier
January 14, 2026 - Additionally, we're releasing two new official plugins: @prettier/plugin-oxc and @prettier/plugin-hermes.
🌐
Daily.dev
app.daily.dev › posts › prettier-3-6-experimental-fast-cli-and-new-oxc-and-hermes-plugins-prettier-zpwne37w8
Prettier 3.6: Experimental fast CLI and new OXC ...
daily.dev is the easiest way to stay updated on the latest programming news. Get the best content from the top tech publications on any topic you want.
Find elsewhere
🌐
GitHub
github.com › oxc-project › oxc › discussions › 7571
A Better Formatter 😭 · oxc-project/oxc · Discussion #7571
(I saw a discussion about OXC being a drop-in replacement to Prettier, so that's why I added this text). There are so many prettier plugins for this, but some things are wrong with all of them.
Author   oxc-project
🌐
GitHub
github.com › prettier › prettier › issues › 17519
Simplify use of `@prettier/plugin-oxc` · Issue #17519 · prettier/prettier
February 26, 2025 - { "overrides": [ { "files": ["**/*.{js,mjs,cjs,jsx}"], "options": { "plugins": ["@prettier/plugin-oxc"], "parser": "oxc" } }, { "files": ["**/*.{ts,mts,cts,tsx}"], "options": { "plugins": ["@prettier/plugin-oxc"], "parser": "oxc-ts" } } ] } I think we can make this work ·
Published   May 27, 2025
Author   fisker
🌐
AlternativeTo
alternativeto.net › news › 2025 › 6 › prettier-3-6-released-with-experimental-cli-and-official-oxc-and-hermes-plugins
Prettier 3.6 released with experimental CLI and official OXC and Hermes plugins | AlternativeTo
June 23, 2025 - The @prettier/plugin-oxc plugin leverages the OXC parser, written in Rust, to handle JavaScript and TypeScript with new oxc and oxc-ts parsers. The @prettier/plugin-hermes plugin utilizes the Hermes JavaScript engine, introducing a new hermes ...
🌐
npm
npmjs.com › package › @ianvs › prettier-plugin-sort-imports
@ianvs/prettier-plugin-sort-imports - npm
This plugin is compatible with the new '@prettier/plugin-oxc' plugin available for Prettier 3.6+, but must be specified after that plugin in the plugins configuration array (i.e.
      » npm install @ianvs/prettier-plugin-sort-imports
    
🌐
Oxidation Compiler
oxc.rs › docs › guide › usage › formatter.html
Oxfmt
Oxfmt now passes 100% of Prettier's JavaScript and TypeScript conformance tests. For any remaining formatting inconsistencies, we have reported them to the Prettier team and are collaborating to converge on expected behavior.
🌐
GitHub
github.com › oxc-project › oxc › issues › 19715
oxfmt: bundle prettier-plugin-svelte and prettier-plugin-astro · Issue #19715 · oxc-project/oxc
2 weeks ago - https://npmx.dev/package-code/prettier-plugin-astro/v/0.14.1/package.json · Svelte · Research: May need to bundle svelte itself, which version? Our bundled tailwind can work with? Bundle / Collect .svelte / Support options under oxfmtrc.svelte(?) Apply oxc_formatter to js-in-svelte ·
Author   Boshen
🌐
DEV Community
dev.to › uday-rana › using-oxlint-for-my-nodejs-project-45a
Using Oxlint for My Node.js Project - DEV Community
November 10, 2024 - I also deleted my .prettierignore because Prettier follows the rules in .gitignore and I realized it was redundant. Oxc, Oxlint's parent project, also has a formatter, but I chose not to use it because it's still a prototype and doesn't have docs.
🌐
Sergio Carracedo
sergiocarracedo.es › speed-up-10x-code-formatting-and-linting-with-oxfmt-and-oxlint
Sergio Carracedo | Speed up 10x (and more) code formatting and linting with oxfmt and oxlint
If you need full Prettier compatibility, you can keep using Prettier with the @prettier/plugin-oxc plugin, which uses Oxc under the hood to speed up formatting.
🌐
Oxidation Compiler
oxc.rs › blog › 2026-02-24-oxfmt-beta
Oxfmt Beta
Oxfmt is a Rust-powered, Prettier-compatible code formatter built for the JavaScript ecosystem.