{"id":23080967,"url":"https://github.com/carloslfu/lisp-js","last_synced_at":"2025-10-15T10:51:26.621Z","repository":{"id":84064628,"uuid":"107237118","full_name":"carloslfu/lisp-js","owner":"carloslfu","description":"Lisp interpreter written for the Web","archived":false,"fork":false,"pushed_at":"2018-01-14T06:54:55.000Z","size":56,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-02T18:28:52.290Z","etag":null,"topics":["javascript","lisp","lisp-compiler","lisp-dialect","lisp-interpreter","typescript","webassembly"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/carloslfu.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-17T08:04:17.000Z","updated_at":"2023-04-15T19:45:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"ae5c9f4d-7ed5-45dd-8dc5-c8b63873ab97","html_url":"https://github.com/carloslfu/lisp-js","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/carloslfu/lisp-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloslfu%2Flisp-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloslfu%2Flisp-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloslfu%2Flisp-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloslfu%2Flisp-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carloslfu","download_url":"https://codeload.github.com/carloslfu/lisp-js/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carloslfu%2Flisp-js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279074930,"owners_count":26097741,"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","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["javascript","lisp","lisp-compiler","lisp-dialect","lisp-interpreter","typescript","webassembly"],"created_at":"2024-12-16T13:43:26.072Z","updated_at":"2025-10-15T10:51:26.590Z","avatar_url":"https://github.com/carloslfu.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lisp-JS\n\nThis library is an extendable interpreter / compiler for Lisp intended for use in any JS environment as a secure sandboxed execution runtime.\n\nExample code:\n\n```javascript\nconst { run } = require('./index')\n\nconst code = `\n  (process\n    (def\n      [sqrtIter x guess]\n      (if\n        [= (Math .abs (- x (* guess guess))) 0]\n        guess\n        (sqrtIter x (/ (+ guess (/ x guess)) 2))\n      )\n    )\n    (def\n      [sqrt x]\n      (sqrtIter x 1)\n    )\n    (sqrt 9)\n  )\n`\n\nlet result = run({})(code)\n\nconsole.log(result)\n```\n\n## Roadmap\n\n- Port pausable interpreter to TypeScript\n- Implement a pausable interpreter\n- Improve README and docs\n- Support for comments (`;`) as a special form\n- Implement code generation\n- Implement a code generator for WebAssembly\n- Allow concurrent execution\n- Allow multi-threaded execution\n\n## Goals\n\n- Build a language for Fractal over JS\n- Be simple and performant\n\n## Docs\n\n- Language is described in LANGUAGE.md\n\n## TODOs\n\n- Tests lambdas to capture values\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarloslfu%2Flisp-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarloslfu%2Flisp-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarloslfu%2Flisp-js/lists"}