Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
J

jsonata

> 编程语言
Open source

JSONata query and transformation language - http://jsonata.org

2.7K stars0 likes1 views
WebsiteGitHub

About

JSONata query and transformation language - http://jsonata.org

JSONata

JSON query and transformation language

Reference implementation of the JSONata query and transformation language.

  • JSONata in 5 minutes
  • JSONata language documentation
  • Try it out!

Installation

  • npm install jsonata

Quick start

In Node.js:

const jsonata = require('jsonata');

const data = {
    example: [
        {value: 4},
        {value: 7},
        {value: 13}
    ]
};

(async () => {
    const expression = jsonata('$sum(example.value)');
    const result = await expression.evaluate(data);  // returns 24
})()

In a browser:

…

More information

  • JSONata documentation
  • JavaScript API
  • Intro talk at London Node User Group

Contributing

See the CONTRIBUTING.md for details of how to contribute to this repo.

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •JSONata in 5 minutes
  • •JSONata language documentation
  • •Try it out!
  • •npm install jsonata
  • •JSONata documentation
  • •JavaScript API
  • •Intro talk at London Node User Group

> Tags

JavaScript

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言