{"id":18723238,"url":"https://github.com/apjanke/octave-jsonstuff","last_synced_at":"2025-04-12T14:53:35.884Z","repository":{"id":69291023,"uuid":"167037607","full_name":"apjanke/octave-jsonstuff","owner":"apjanke","description":"Matlab-compatible jsonencode/jsondecode functions for GNU Octave","archived":false,"fork":false,"pushed_at":"2022-09-11T22:05:33.000Z","size":1700,"stargazers_count":5,"open_issues_count":7,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-06T12:02:54.378Z","etag":null,"topics":["cplusplus","cpp","gnu-octave","json","octave"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apjanke.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2019-01-22T17:33:49.000Z","updated_at":"2024-01-27T08:47:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"3a86386d-e20a-4196-bba9-44118dfe5ab3","html_url":"https://github.com/apjanke/octave-jsonstuff","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apjanke%2Foctave-jsonstuff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apjanke%2Foctave-jsonstuff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apjanke%2Foctave-jsonstuff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apjanke%2Foctave-jsonstuff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apjanke","download_url":"https://codeload.github.com/apjanke/octave-jsonstuff/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248586238,"owners_count":21128995,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cplusplus","cpp","gnu-octave","json","octave"],"created_at":"2024-11-07T13:48:08.887Z","updated_at":"2025-04-12T14:53:35.878Z","avatar_url":"https://github.com/apjanke.png","language":"C++","readme":"# JsonStuff for GNU Octave\n\n| WARNING: All the code in here is currently in the alpha stage. (Pre-beta, that is.) Do not use it in any production or business code! Seriously!! |\n| ---- |\n\nJSON encoding/decoding functionality for GNU Octave.\n\n## Goals\n\nJsonStuff attempts to provide a set of Matlab-compatible JSON encoding and decoding functions, namely `jsonencode` and `jsondecode`.\n\nJsonStuff is currently implemented as an Octave package for the `pkg` tool. The goal for JsonStuff is to be eventually merged into core Octave. After that happens, JsonStuff will continue to be maintained as a separate package to provide support for the Octave 4.x and 5.x release lines, at least until the Octave GUI for 5.x+ is fixed for macOS.\n\n## Soon to be Legacy\n\nIn summer 2020, core Octave implemented jsondecode and jsonencode, and these will be coming out in Octave 7.x. So JsonStuff is soon to be a legacy package, useful only for older versions of Octave. At that point I'm going to put it in \"basic maintenance only\" mode and stop development on it in favor of contributing to the core Octave implementations.\n\n## Installation and usage\n\n### Quick start\n\nTo get started using or testing this project, install it using Octave's `pkg` function:\n\n```octave\npkg install https://github.com/apjanke/octave-jsonstuff/releases/download/v0.3.3/jsonstuff-0.3.3.tar.gz\npkg load jsonstuff\n```\n\n### Installation for development\n\n* Clone the repo.\n  * `git clone https://github.com/apjanke/octave-jsonstuff`\n* Run `make dist` in a shell.\n* Install the resulting `target/jsonstuff-X.Y.Z.tar.gz` package file by running `pkg install /path/to/repo/octave-jsonstuff/target/jsonstuff-X.Y.Z.tar.gz` in Octave.\n* Lather, rinse, and repeat each time you make changes to any of the source code.\n\n## Requirements\n\n* Octave 4.4 or newer\n\nJsonStuff runs on Octave 4.4.1 and later. It would be nice to have it work on Octave 4.0.0\nand later (since Ubuntu 16 Xenial has Octave 4.0 and Ubuntu 18 Bionic has Octave 4.2); maybe we'll do that some day.\n\nJsonStuff works on macOS, Linux, and Windows. (Though our CI is not running on Windows yet.)\n\n## Documentation\n\nThe user documentation is in the `doc/` directory. See `doc/jsonstuff.html` or `doc/html/index.html` for\nthe manual.\n\nThere's a [FAQ](doc-project/FAQ.md) in `doc-project/`.\n\nThe developer documentation (for people hacking on JsonStuff itself) is in `doc-project/`. Also see\n[CONTRIBUTING](CONTRIBUTING.md) if you would like to contribute to this project.\n\n## “Internal” code\n\nAnything in a namespace with `internal` in its name is for the internal use of this package, and is not intended for use by user code. Don't use those! Resist the urge! If you really have a use case for them, post an Issue and we'll see about making some public API for them.\n\n## License\n\nJsonStuff is Free Software.\n\nThe JsonStuff code itself is licensed under the GNU GPLv3.\n\nJsonStuff includes a redistribution of the [RapidJSON](https://github.com/Tencent/rapidjson/releases) library as source code, which is licensed under the MIT License.\n\n## Author and Support\n\nJsonStuff is created by [Andrew Janke](https://apjanke.net).\n\nSupport is available on a best-effort basis via the [JsonStuff GitHub repo](https://github.com/apjanke/octave-jsonstuff). If you have a problem with JsonStuff, post an issue on the Issue Tracker there.\n\nThe project's author also hangs out in the `#octave` channel on [freenode IRC](https://freenode.net/) and the [Octave Maintainers mailing list](https://lists.gnu.org/mailman/listinfo/octave-maintainers). You can ask questions there.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapjanke%2Foctave-jsonstuff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapjanke%2Foctave-jsonstuff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapjanke%2Foctave-jsonstuff/lists"}