{"id":19768282,"url":"https://github.com/matiasvlevi/ludit","last_synced_at":"2026-03-05T17:43:50.096Z","repository":{"id":59145081,"uuid":"402099011","full_name":"matiasvlevi/ludit","owner":"matiasvlevi","description":"Ludit is an interpreter for Ludi, a language meant to express and compute boolean algebra in the CLI.","archived":false,"fork":false,"pushed_at":"2023-02-28T03:02:43.000Z","size":673,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-10-28T12:17:17.970Z","etag":null,"topics":["boolean","boolean-algebra","boolean-logic","logic-gates"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matiasvlevi.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}},"created_at":"2021-09-01T14:52:44.000Z","updated_at":"2024-11-02T02:37:05.000Z","dependencies_parsed_at":"2024-10-29T23:51:47.568Z","dependency_job_id":null,"html_url":"https://github.com/matiasvlevi/ludit","commit_stats":{"total_commits":75,"total_committers":1,"mean_commits":75.0,"dds":0.0,"last_synced_commit":"c5fb17b061a374292d5b6ba55337663174847999"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/matiasvlevi/ludit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matiasvlevi%2Fludit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matiasvlevi%2Fludit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matiasvlevi%2Fludit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matiasvlevi%2Fludit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matiasvlevi","download_url":"https://codeload.github.com/matiasvlevi/ludit/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matiasvlevi%2Fludit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30139592,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T16:58:46.102Z","status":"ssl_error","status_checked_at":"2026-03-05T16:58:45.706Z","response_time":93,"last_error":"SSL_read: 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":["boolean","boolean-algebra","boolean-logic","logic-gates"],"created_at":"2024-11-12T04:36:55.137Z","updated_at":"2026-03-05T17:43:50.072Z","avatar_url":"https://github.com/matiasvlevi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://i.ibb.co/Fg3d0dr/logo.png\" alt=\"Ludit\" height=\"100\"/\u003e\n\u003c/p\u003e\n\n\u003ch3 align=\"center\"\u003eBoolean Algebra in the CLI\u003c/h4\u003e\n    \n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/matiasvlevi/ludit/blob/parser/README.md\"\u003eInstall\u003c/a\u003e •\n  \u003ca href=\"https://github.com/matiasvlevi/ludit/blob/parser/DOCUMENTATION.md\"\u003eDocumentation\u003c/a\u003e •\n  \u003ca href=\"https://github.com/matiasvlevi/ludit/blob/parser/LICENCE\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n    \n\u003cbr/\u003e\u003cbr/\u003e\n    \nLudit is an interpreter for Ludi, a language meant to express and compute boolean algebra in the CLI.\n\nLudi allows you to generate truth tables and karnaugh tables.\n\n\u003cbr/\u003e\n\n\u003ctable align=\"center\"\u003e\n\u003ctr\u003e\n\u003ctd align=\"center\"\u003e Ludi Code \u003c/td\u003e \u003ctd align=\"center\"\u003e Truth table \u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\n\n```python\ndef and = A * B\ndef or  = A + B\n\nor(and(A, !B), C)\n```\n\n\u003c/td\u003e\n\u003ctd\u003e\n\n\u003cimg src=\"https://i.ibb.co/VJXj67w/table-Demo.png\" alt=\"luditable\" height=\"310\"/\u003e\n\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd align=\"center\"\u003e  \u003c/td\u003e \u003ctd align=\"center\"\u003e Karnaugh \u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003ctd\u003e\n\n```python\ndef and = A * B\ndef or  = A + B\n\nor(and(A, !B), C) ~k\n```\n\n\u003c/td\u003e\n\u003ctd\u003e\n\n\u003cimg src=\"https://i.ibb.co/brfzTfX/karnaugh-Demo.png\" alt=\"luditable\" height=\"210\"/\u003e\n\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n\n\n\n# Install\n```\nnpm i -g ludit\n```\n(build from source for latest check `package.json`)\n\n\n##### Install the standard lib (Optional)\n\nRun `./install.sh` as root\n\n\u003cbr/\u003e\n\n### Usage\n\nShow help menu\n\n```\nludit -h\n```\n\n\u003cbr/\u003e\n\nWrite boolean equations\n\n```\nludit \"A * 'B + 'A * B\"\n```\n\n\u003cbr/\u003e\n\nYou can also run files with `-f`\n\n```\nludit -f ./examples/project/main.ludi\n```\n\n[Read the language documentation](https://github.com/matiasvlevi/ludit/blob/parser/DOCUMENTATION.md)\n\n\u003cbr/\u003e\n\nSyntax highlighting file for vim is provided under\n\n```\n.vim/ludi.vim\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatiasvlevi%2Fludit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatiasvlevi%2Fludit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatiasvlevi%2Fludit/lists"}