{"id":16011621,"url":"https://github.com/kolharsam/lisp-y","last_synced_at":"2026-01-31T11:32:59.101Z","repository":{"id":42924143,"uuid":"241557626","full_name":"kolharsam/lisp-y","owner":"kolharsam","description":"A Clojure Interpreter written in JS","archived":false,"fork":false,"pushed_at":"2023-03-04T06:15:57.000Z","size":223,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-13T14:46:43.996Z","etag":null,"topics":["clojure","js","lisp-interpreter","repl"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/kolharsam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-19T07:18:33.000Z","updated_at":"2023-03-04T11:29:44.000Z","dependencies_parsed_at":"2024-10-27T16:13:57.235Z","dependency_job_id":"3c5b79c1-8361-48e6-8518-8bba273c4785","html_url":"https://github.com/kolharsam/lisp-y","commit_stats":{"total_commits":149,"total_committers":2,"mean_commits":74.5,"dds":0.02684563758389258,"last_synced_commit":"45a93863c916a9b01300e4a4f952820f67ed4bab"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kolharsam/lisp-y","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kolharsam%2Flisp-y","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kolharsam%2Flisp-y/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kolharsam%2Flisp-y/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kolharsam%2Flisp-y/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kolharsam","download_url":"https://codeload.github.com/kolharsam/lisp-y/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kolharsam%2Flisp-y/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28940470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T10:18:23.202Z","status":"ssl_error","status_checked_at":"2026-01-31T10:18:22.693Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["clojure","js","lisp-interpreter","repl"],"created_at":"2024-10-08T14:00:36.709Z","updated_at":"2026-01-31T11:32:59.084Z","avatar_url":"https://github.com/kolharsam.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lisp-y\n\n```\n(apply str (interpose \" \" (list \"My\" \"attempt\" \"at\" \"making\" \"a\" \"lisp\")))\n\n// Output: \"My attempt at making a lisp\"\n```\n\n![lisp-y CI](https://github.com/kolharsam/lisp-y/workflows/lisp-y%20CI/badge.svg) [![Run on Repl.it](https://repl.it/badge/github/kolharsam/lisp-y)](https://repl.it/github/kolharsam/lisp-y) [![DeepScan grade](https://deepscan.io/api/teams/8319/projects/10466/branches/145810/badge/grade.svg)](https://deepscan.io/dashboard#view=project\u0026tid=8319\u0026pid=10466\u0026bid=145810)\n\n## Instructions to setup the repo\n\n- Fork this respository\n- Clone that forked repository\n- Make sure you have `npm` and `node` installed. Install or upgrade v10 Node at the very least.\n- Use `npm install` to install dependencies.\n- Useful commands are present in the `Makefile` to `run`, `build` and `run-tests`.\n- Make a Pull Request!\n\n## Notes\n\nAs of now, only some methods have been added which can be evaluated. But yes, over time I hope to keep building on this.\n\nThe functions and most of the syntax is going to be based off of `Clojure`.\nIf you've not encountered it yet, have a look.\n\nUse the [Makefile](https://github.com/kolharsam/lisp-y/blob/feature/eval-functions/Makefile) to run the REPL.\n\nIf you'd like then, leave some comments on anything that you feel can be bettered or changed.\n\n#lispsforthewin\n\n## Core Lib Functions\n\nThe list of functions that are supported are mentioned [here](https://github.com/kolharsam/lisp-y/blob/ce2c7fc7817037da676d9b7f76b7511c23257844/lib/index.js#L574)\n\nMore \u0026 more functions will be supported soon! You could also help build some if interested!\n\n## Runtime Env.\n\n```\n    On my machine, I'm developing the program using\n    Node: v10.16.0\n```\n\n#### Footnote\n\nThere's post by _the_ [Norvig](http://norvig.com/lispy.html) in which he creates a lisp interpreter using Python. It's only a coincidence that the one I'm building is also known as **_lispy_**. But yeah, check the article anyway if you're not interested in this repo.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkolharsam%2Flisp-y","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkolharsam%2Flisp-y","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkolharsam%2Flisp-y/lists"}