đź“ť Edit page
âž• Add page
Install
Install it globally.
$ npm i -g prettier
$ prettier -h
Or install it in a project.
$ npm i --save-dev prettier
If you’ve set it up in your NPM scripts, you can run like this:
$ npm run format
Otherwise, run ad hoc commands on the CLI as:
$ npx prettier
Using npx
here works even if prettier
is not installed anywhere.