{"id":17049118,"url":"https://github.com/toddself/parthenon","last_synced_at":"2026-04-20T13:04:40.070Z","repository":{"id":57319769,"uuid":"158122992","full_name":"toddself/parthenon","owner":"toddself","description":"A column-minimal experimental ORM for Postgres","archived":false,"fork":false,"pushed_at":"2018-12-09T21:25:06.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-25T19:50:47.202Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/toddself.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}},"created_at":"2018-11-18T20:16:08.000Z","updated_at":"2018-12-09T21:25:07.000Z","dependencies_parsed_at":"2022-08-26T01:11:15.492Z","dependency_job_id":null,"html_url":"https://github.com/toddself/parthenon","commit_stats":null,"previous_names":["toddself/orm"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/toddself/parthenon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toddself%2Fparthenon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toddself%2Fparthenon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toddself%2Fparthenon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toddself%2Fparthenon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toddself","download_url":"https://codeload.github.com/toddself/parthenon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toddself%2Fparthenon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32048446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"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":[],"created_at":"2024-10-14T09:53:53.881Z","updated_at":"2026-04-20T13:04:40.051Z","avatar_url":"https://github.com/toddself.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# parthenon\nAn experimental ORM using JSONB column types in Postgres\n\n## Usage\n\n```js\nconst ORM = require('./orm')\nconst orm = new ORM({database: 'test'})\nconst UserModel = orm.makeModel({\n  name: 'user',\n  table: 'users',\n  fields: {\n    name: orm.fields.string(),\n    group: orm.fields.related('group', 'members')\n  }\n})\nconst GroupModel = orm.makeModel({\n  name: 'group',\n  fields: {\n    name: orm.fields.string(),\n    user: orm.fields.related(UserModel, 'members')\n  }\n})\nawait orm.initialize([UserModel])\nconst group = new GroupModel({name: 'people'})\nconst user = new UserModel({name: 'todd', group})\nawait user.save()\nawait orm.end()\n```\n\n## License\nCopyright © 2018 Todd Kennedy, Apache-2.0 licensed\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoddself%2Fparthenon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoddself%2Fparthenon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoddself%2Fparthenon/lists"}