{"id":41945112,"url":"https://github.com/joussy/jsonata-server","last_synced_at":"2026-01-25T19:21:23.849Z","repository":{"id":242740159,"uuid":"810414087","full_name":"joussy/jsonata-server","owner":"joussy","description":"A server-side processor for JSONata that supports JSON, XML and CSV input/output","archived":false,"fork":false,"pushed_at":"2025-12-13T10:54:43.000Z","size":328,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T16:00:00.366Z","etag":null,"topics":["csv","expressjs","jsonata","monaco-editor","xml"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joussy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-04T16:44:29.000Z","updated_at":"2025-07-29T20:41:12.000Z","dependencies_parsed_at":"2024-08-16T16:14:06.517Z","dependency_job_id":null,"html_url":"https://github.com/joussy/jsonata-server","commit_stats":null,"previous_names":["joussy/jsonata-playground","joussy/jsonata-server"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/joussy/jsonata-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joussy%2Fjsonata-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joussy%2Fjsonata-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joussy%2Fjsonata-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joussy%2Fjsonata-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joussy","download_url":"https://codeload.github.com/joussy/jsonata-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joussy%2Fjsonata-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28757355,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","expressjs","jsonata","monaco-editor","xml"],"created_at":"2026-01-25T19:21:21.797Z","updated_at":"2026-01-25T19:21:23.843Z","avatar_url":"https://github.com/joussy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm](https://img.shields.io/npm/v/jsonata-server.svg)](https://www.npmjs.com/package/jsonata-server)\r\n# JSONata Server\r\nA server-side processor for [JSONata](https://github.com/jsonata-js/jsonata) that supports JSON, XML and CSV input/output, with a feature-rich UI editor powered by [Monaco Editor](https://github.com/microsoft/monaco-editor)\r\n\r\n## Features\r\n- **Unlimited Processing Time**: Server-side processing removes browser limitations.\r\n- **Flexible Input/Output**: Supports both JSON, XML and CSV formats.\r\n- **Choose your CSV Delimiter**: comma, semi-column and tab are supported\r\n- **File Generation**: No need to copy-paste into files, you can download the result as a file\r\n- **Data Persistence**: Saves data to local storage to prevent data loss.\r\n- **Dark/Light Mode**: Choose your preferred theme.\r\n- **Auto-refresh**: Automatically updates the data.\r\n- **Error Highlighting**: Find easily in your JSONata expression what went wrong\r\n- **Autocompletion and documentation**: JSONata documentation for functions is embbed\r\n- **Advanced UI Editor**: Powered by [Monaco Editor](https://github.com/microsoft/monaco-editor).\r\n- **JS Bindings and Mustache templating**: Go beyond Jsonata capabilities\r\n\r\n## Screenshot\r\n![Preview](assets/screenshot.png)\r\n\r\n## Custom Bindings\r\nYou can use [JSONata bindings](https://docs.jsonata.org/embedding-extending#expressionevaluateinput-bindings-callback) feature directly inside the JSONata expression window.\r\nTo do so, add `//BINDINGS` at the end of your JSONata expression, followed by your custom bindings.\r\nExample:\r\n```\r\n\"hello there!\" ~\u003e $firstLetterUppercase\r\n//BINDINGS\r\n{\r\n   firstLetterUppercase(input) {\r\n      return input.charAt(0).toUpperCase() + input.slice(1);\r\n   }\r\n}\r\n```\r\nwill produce the following result\r\n```json\r\n\"Hello there!\"\r\n```\r\n\r\n## Mustache templating\r\nSimply call `$mustache` to perform render a template\r\n```\r\n{\"firstName\": \"John\", \"lastName\": \"Doe\"} ~\u003e $mustache(\"\r\nHello {{firstName}} {{lastName}} !!\r\n\")\r\n```\r\nwill produce the following result (Raw output mode):\r\n```\r\nHello John Doe !!\r\n```\r\n\r\n## Getting Started\r\n### With NPM\r\n\u003e [!NOTE]\r\n\u003e NodeJS \u003e=18.3 must be installed on your machine\r\n1. Install NPM CLI package globally:\r\n   ```sh\r\n   npm install -g jsonata-server\r\n   ```\r\n2. Start the server:\r\n   ```sh\r\n   PORT=3000 jsonata-server\r\n   ```\r\n### With Docker\r\n\u003e [!NOTE]\r\n\u003e You must be authenticated on the [Github Container Registery](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-with-a-personal-access-token-classic)\r\n   ```\r\ndocker run -d -p 3000:3000 ghcr.io/joussy/jsonata-server\r\n   ```\r\n\r\n### Accessing the Client\r\nOpen your browser and navigate to http://localhost:3000\r\n\r\n\r\n## Build from sources\r\n### Installation\r\n1. Clone the repository:\r\n   ```sh\r\n   git clone https://github.com/joussy/jsonata-server.git\r\n   ```\r\n2. Navigate to the project directory:\r\n   ```sh\r\n   cd jsonata-server\r\n   ```\r\n3. Install the dependencies\r\n   ```sh\r\n   npm install\r\n   ```\r\n### Building the Docker Image\r\n1. Build the Docker image:\r\n```sh\r\ndocker build -t jsonata-server .\r\n```\r\n### Running the Docker Container\r\n2. Run the Docker container:\r\n```sh\r\ndocker run -d -p 3000:3000 --name jsonata-server jsonata-server\r\n```\r\n3. Open your browser and navigate to http://localhost:3000\r\n\r\n## Dependencies\r\n\r\n### Node.js Server\r\n- [JSONata](https://github.com/jsonata-js/jsonata)\r\n- [CSV](https://github.com/adaltas/node-csv)\r\n- [Express](https://github.com/expressjs/express)\r\n- [xml-js](https://github.com/nashwaan/xml-js)\r\n\r\n### HTML Client\r\n- [Vue.js](https://vuejs.org/)\r\n- [Bootstrap](https://getbootstrap.com/)\r\n- [Monaco Editor](https://github.com/microsoft/monaco-editor)\r\n- [Splitpanes](https://antoniandre.github.io/splitpanes)\r\n\r\n## Contributing\r\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\r\n\r\n## License\r\nThis project is licensed under the MIT License - see the LICENSE file for details.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoussy%2Fjsonata-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoussy%2Fjsonata-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoussy%2Fjsonata-server/lists"}