Standalone browser build of Prettier, an opinionated code formatter. Version 1.3.1-0 (archived, replaced by prettier's built-in standalone bundles). This package is a legacy wrapper that allowed using Prettier in browser environments before Prettier officially shipped standalone UMD/ESM builds. It aggregates all Prettier language parsers into a single browser-compatible bundle. The official Prettier package now includes its own standalone builds (e.g., 'standalone.js', 'parser-*.js') in the 'prettier' npm package, making this package obsolete. No longer maintained; users should switch to the official 'prettier' package and its standalone modules.
npm install prettier-standaloneVerified import paths — ran on the pinned version, not inferred.
Demonstrates using official prettier standalone in browser with ES module imports from CDN.
Replace import 'prettier-standalone' with 'prettier/standalone' and install 'prettier' instead.
Migrate to prettier@latest and use the official standalone builds.
With official Prettier, import and register parsers via 'plugins' option.
Switch to actively maintained 'prettier' package.
Install 'prettier' instead: npm install prettier
Use ES module import from official standalone: import prettier from 'prettier/standalone'
Import parser modules and pass them in the plugins array: plugins: [parserBabel]
No dependency data recorded yet.