{"id":13861555,"url":"https://github.com/clojure-emacs/parseedn","last_synced_at":"2025-06-26T03:34:41.767Z","repository":{"id":29738990,"uuid":"122648960","full_name":"clojure-emacs/parseedn","owner":"clojure-emacs","description":"EDN parser for Emacs Lisp","archived":false,"fork":false,"pushed_at":"2023-12-03T21:33:30.000Z","size":67,"stargazers_count":62,"open_issues_count":3,"forks_count":15,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-04-10T10:48:11.885Z","etag":null,"topics":["clojure","edn","edn-data","edn-parser","elisp","emacs","emacs-lisp"],"latest_commit_sha":null,"homepage":null,"language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clojure-emacs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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}},"created_at":"2018-02-23T17:00:32.000Z","updated_at":"2025-04-06T08:44:42.000Z","dependencies_parsed_at":"2022-07-27T22:38:18.574Z","dependency_job_id":"e1a76710-d7ea-4338-895a-2b7d1ce68fcf","html_url":"https://github.com/clojure-emacs/parseedn","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/clojure-emacs/parseedn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clojure-emacs%2Fparseedn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clojure-emacs%2Fparseedn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clojure-emacs%2Fparseedn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clojure-emacs%2Fparseedn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clojure-emacs","download_url":"https://codeload.github.com/clojure-emacs/parseedn/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clojure-emacs%2Fparseedn/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261995340,"owners_count":23242192,"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":["clojure","edn","edn-data","edn-parser","elisp","emacs","emacs-lisp"],"created_at":"2024-08-05T06:01:25.058Z","updated_at":"2025-06-26T03:34:41.738Z","avatar_url":"https://github.com/clojure-emacs.png","language":"Emacs Lisp","funding_links":[],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"[![CircleCI](https://circleci.com/gh/clojure-emacs/parseedn.svg?style=svg)](https://circleci.com/gh/clojure-emacs/parseedn)\n[![MELPA](http://melpa.org/packages/parseedn-badge.svg)](http://melpa.org/#/parseedn)\n[![MELPA Stable](http://stable.melpa.org/packages/parseedn-badge.svg)](http://stable.melpa.org/#/parseedn)\n\n# EDN parser for Emacs Lisp\n\n`parseedn` is an Emacs Lisp library for parsing [EDN\ndata](https://github.com/edn-format/edn). It uses\n[`parseclj`](https://github.com/clojure-emacs/parseclj)'s shift-reduce parser\ninternally.\n\nEDN and Emacs Lisp have some important differences that make translation from\none to the other not transparent (think representing an EDN map into Elisp, or\nbeing able to differentiate between `false` and `nil` in Elisp).  Because of\nthis, `parseedn` takes certain decisions when parsing and transforming EDN data\ninto Elisp data types.  For more information please refer to [`parseclj`\nDESIGN.md](https://github.com/clojure-emacs/parseclj/blob/master/DESIGN.md)\ndocument.\n\nLastly, `parseedn` is in **alpha** stage, so its API is subject to change.\n\n## Installation\n\nAvailable on the major `package.el` community maintained repos -\n[MELPA Stable][] and [MELPA][] repos.\n\nMELPA Stable is the recommended repo as it has the latest stable\nversion.  MELPA has a development snapshot for users who don't mind\n(infrequent) breakage but don't want to run from a git checkout.\n\nYou can install `parseedn` using the following command:\n\n\u003ckbd\u003eM-x package-install [RET] parseedn [RET]\u003c/kbd\u003e\n\nor if you'd rather keep it in your dotfiles:\n\n```el\n(unless (package-installed-p 'parseedn)\n  (package-install 'parseedn))\n```\n\nIf the installation doesn't work try refreshing the package list:\n\n\u003ckbd\u003eM-x package-refresh-contents\u003c/kbd\u003e\n\n[melpa]: http://melpa.org\n[melpa stable]: http://stable.melpa.org\n\n## Usage\n\n- `parseedn-read`\n\n    Read content from the current buffer as EDN and transforms it into an Emacs\n    Lisp value.\n\n- `parseedn-read-str` str\n\n    Read STR as EDN and transfroms it into an Emacs Lisp value.\n\n- `parseedn-print` datum\n\n    Inserts DATUM as EDN Into the current buffer.  DATUM can be any Emacs Lisp\n    value.\n\n- `parseedn-print-str` datum\n\n    Returns a string containing DATUM as EDN.  DATUM can be any Emacs Lisp\n    value.\n\n## Prior art\n\n[edn.el](https://github.com/expez/edn.el) is an EDN-to-elisp parser based on the\nPEG parser generator library.\n\n## License\n\n\u0026copy; 2017-2023 Arne Brasseur\n\nDistributed under the terms of the GNU General Public License 3.0 or later. See\n[LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclojure-emacs%2Fparseedn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclojure-emacs%2Fparseedn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclojure-emacs%2Fparseedn/lists"}