All Projects → janet-lang → json

janet-lang / json

Licence: MIT license
JSON library for the janet language

Programming Languages

c
50402 projects - #5 most used programming language
Janet
8 projects

Note: Please use spork/json instead.

jpm install spork

JSON

A JSON module for janet. Encodes and Decodes JSON data and converts it to and from Janet data structures. Strings are encoded as UTF-8, and UTF-16 escapes and surrogates as supported as per the JSON spec.

Json values are translated as follows:

  • JSON array becomes Janet array
  • JSON string becomes a Janet string.
  • JSON Objects becomes a Janet table.
  • JSON true and false become Janet booleans.
  • JSON null becomes the keyword :null. This is because JSON supports null values in objects, while Janet does not support nil value or keys in tables.

Building

To build the native module, use the jpm tool, which requires having janet installed. Run

jpm build

To build the library.

Testing

jpm test

License

This module is licensed under the MIT/X11 License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].