2.1.3 • Published 1 month ago

@stedi/prettier-plugin-jsonata v2.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Prettier plugin for JSONata language

Format your JSONata expressions using Prettier.

How it works

A Prettier plugin must first parse the source code of the target language into a traversable data structure (Usually an Abstract Syntax Tree) and then print out that data structure in a "pretty" style.

prettier-plugin-jsonata uses the JSONata parser available as part of the jsonata package.

Status

  • The plugin supports all JSONata feature up to 2.0.1 version, and is backward compatible with 1.7.0 release.
  • The plugin can output formatted code for any AST node type.
  • Only printWidth, tabWidth, and useTabs formatting options are supported.
  • Native integration with code editors is not supported due to the lack of IDE extensions providing JSONata language support. Once such extensions are available, it should become possible to format JSONata documents on save when this plugin is installed.

Install

# Install locally in a project
npm install --save-dev @stedi/prettier-plugin-jsonata prettier

# Or globally
npm install -g @stedi/prettier-plugin-jsonata prettier

Usage with the CLI

Once you installed prettier and prettier-plugin-jsonata as dev dependencies in your project, you can format your code using Prettier CLI.

npx prettier --write ./**/*.jsonata

Programmatic usage

You can format your JSONata expressions using Prettier's own format method like this:

import * as prettier from "prettier";
import * as prettierPlugin from "@stedi/prettier-plugin-jsonata";

const expression = "($myVar:=foo.bar[]; $reverse($myVar))";
const formattedExpression = prettier.format(expression, {
  parser: prettierPlugin.AST_PARSER_NAME,
  plugins: [prettierPlugin],
  printWidth: 150,
  tabWidth: 2,
  useTabs: false,
});

console.log(formattedExpression);

Alternatively, you can use the formatJsonata function:

import { formatJsonata } from "@stedi/prettier-plugin-jsonata/dist/lib";

async function format() {
  const expression = "($myVar:=foo.bar[]; $reverse($myVar))";
  const formattedExpression = await formatJsonata(expression);

  console.log(formattedExpression);
}

format().catch((e) => {
  console.log(e);
});

If you parse JSONata as part of your business logic and only need to print JSONata AST tree as a formatted string, you can use serializeJsonata function:

import jsonata from "jsonata";
import { serializeJsonata } from "@stedi/prettier-plugin-jsonata/dist/lib";

async function serialize() {
  const jsonataAST = jsonata("($myVar:=foo.bar[]; $reverse($myVar))").ast();
  const formattedExpression = await serializeJsonata(jsonataAST);

  console.log(formattedExpression);
}

serialize().catch((e) => {
  console.log(e);
});
2.1.3

1 month ago

2.1.2

2 months ago

2.1.1

4 months ago

2.1.0

4 months ago

1.16.1

10 months ago

1.16.0

10 months ago

2.0.2

7 months ago

2.0.1

8 months ago

2.0.0

9 months ago

1.15.0

1 year ago

1.14.1

1 year ago

1.14.2

1 year ago

1.14.0

2 years ago

1.13.0

2 years ago

1.12.3

2 years ago

1.12.2

2 years ago

1.12.1

2 years ago

1.12.0

2 years ago

1.11.1

2 years ago

1.12.7

2 years ago

1.12.6

2 years ago

1.12.5

2 years ago

1.12.4

2 years ago

1.9.3

2 years ago

1.11.0

2 years ago

1.10.0

2 years ago

1.9.2

2 years ago

1.9.1

2 years ago

1.9.0

2 years ago

1.8.2

2 years ago

1.8.1

2 years ago

1.8.0

2 years ago

1.7.0

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.18

2 years ago

1.4.17

2 years ago

1.4.16

2 years ago

1.4.15

2 years ago

1.4.14

2 years ago

1.4.13

2 years ago

1.4.12

2 years ago

1.4.11

2 years ago

1.4.10

2 years ago

1.4.9

2 years ago

1.4.8

2 years ago

1.4.7

2 years ago

1.4.6

2 years ago

1.4.5

2 years ago

1.4.4

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago