@stoplight/json
TypeScript icon, indicating that this package has built-in type declarations

3.21.7 • Public • Published

@stoplight/json

Maintainability Test Coverage

Useful functions when working with JSON.

Installation

Supported in modern browsers and node.

# latest stable version
yarn add @stoplight/json

Usage

  • parseWithPointers: Like JSON.parse(val) but also returns parsing errors as well as full ast with line information.
  • pathToPointer: Turns an array of path segments into a json pointer IE ['paths', '/user', 'get'] -> #/paths/~1user/get.
  • pointerToPath: Turns a json pointer into an array of path segments IE #/paths/~1user/get -> ['paths', '/user', 'get'].
  • safeParse: Like JSON.parse(val) but does not throw on invalid JSON.
  • safeStringify: Like JSON.stringify(val) but handles circular references.
  • startsWith: Like native JS x.startsWith(y) but works with strings AND arrays.
  • trimStart: Like lodash.startsWith(x, y) but works with strings AND arrays.
  • getJsonPathForPosition: Computes JSON path for given position.
  • getLocationForJsonPath: Retrieves location of node matching given JSON path.

Example parseWithPointers

import { parseWithPointers } from "@stoplight/json";

const result = parseWithPointers('{"foo": "bar"}');

console.log(result.data); // => the {foo: "bar"} JS object
console.log(result.pointers); // => the source map with a single "#/foo" pointer that has position info for the foo property
// basic example of getJsonPathForPosition and getLocationForJsonPath
import { getJsonPathForPosition, getLocationForJsonPath, parseWithPointers } from "@stoplight/json";

const result = parseWithPointers(`{
  "hello": "world",
  "address": {
    "street": 123
  }
}`);

const path = getJsonPathForPosition(result, { line: 3, character: 15 }); // line and character are 0-based
console.log(path); // -> ["address", "street"];

const position = getLocationForJsonPath(result, ["address"]);
console.log(position.range.start); // { line: 2, character: 13 } line and character are 0-based
console.log(position.range.end); // { line: 4, character: 3 } line and character are 0-based

Contributing

  1. Clone repo.
  2. Create / checkout feature/{name}, chore/{name}, or fix/{name} branch.
  3. Install deps: yarn.
  4. Make your changes.
  5. Run tests: yarn test.prod.
  6. Stage relevant files to git.
  7. Commit: yarn commit. NOTE: Commits that don't follow the conventional format will be rejected. yarn commit creates this format for you, or you can put it together manually and then do a regular git commit.
  8. Push: git push.
  9. Open PR targeting the next branch.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.37-beta.10next
3.21.7309,461latest

Version History

VersionDownloads (Last 7 Days)Published
3.21.7309,461
3.21.614,841
3.21.51,287
3.21.46,425
3.21.32,166
3.21.134
3.21.0336,249
3.20.338,040
3.20.26,035
3.20.135,703
3.20.04,730
3.19.01
3.18.14,840
3.18.0164
3.17.232,380
3.17.14,538
3.17.018,920
3.16.08
3.15.019,164
3.14.06
3.13.79
3.13.62
3.13.582
3.13.40
3.13.30
3.13.22
3.13.1802
3.13.00
3.12.05
3.11.2640
3.11.135
3.11.00
3.10.3223
3.10.2536
3.10.10
3.10.016
3.9.16
3.9.01,287
3.8.61
3.8.50
3.8.40
3.8.320
3.8.20
3.8.18
3.8.07
3.7.42
3.7.39
3.7.27
3.7.124
3.7.00
3.6.027
3.5.11
3.5.00
3.4.01
3.3.01
3.2.20
3.2.10
3.2.00
3.1.20
3.1.10
3.1.00
3.0.40
3.0.31
3.0.20
3.0.10
3.0.00
2.3.31
2.3.20
2.3.10
2.3.00
2.2.21
2.2.10
2.2.01
2.1.00
2.0.11
2.0.00
1.9.00
1.8.00
1.7.00
1.6.00
1.5.10
1.5.00
1.4.00
1.3.00
1.2.00
1.1.01
1.0.10
1.0.01
0.0.44-alpha.10
0.0.44-alpha.00
0.0.430
0.0.420
0.0.410
0.0.400
0.0.390
0.0.381
0.0.38-alpha.10
0.0.37-beta.10
0.0.37-beta.00
0.0.360
0.0.350
0.0.340
0.0.331
0.0.320
0.0.32-beta.20
0.0.32-beta.10
0.0.32-beta.00

Package Sidebar

Install

npm i @stoplight/json

Weekly Downloads

196,112

Version

3.21.7

License

Apache-2.0

Unpacked Size

54.3 kB

Total Files

78

Last publish

Collaborators

  • stoplight-devops