{"id":23441657,"url":"https://github.com/gopher1980/gormcrud","last_synced_at":"2025-07-23T22:34:09.743Z","repository":{"id":57491923,"uuid":"206684001","full_name":"gopher1980/gormcrud","owner":"gopher1980","description":"This is the module for create CRUD in GORM (goland)","archived":false,"fork":false,"pushed_at":"2023-02-09T20:34:45.000Z","size":34,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-09T21:42:36.801Z","etag":null,"topics":["crud","crud-api","crud-generator","go","gorm","gorm-sample","module"],"latest_commit_sha":null,"homepage":"","language":"Go","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/gopher1980.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-09-06T01:00:40.000Z","updated_at":"2019-09-13T03:35:45.000Z","dependencies_parsed_at":"2025-02-15T13:35:44.033Z","dependency_job_id":"e08b356c-a251-4371-8269-06814f46d147","html_url":"https://github.com/gopher1980/gormcrud","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/gopher1980/gormcrud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gopher1980%2Fgormcrud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gopher1980%2Fgormcrud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gopher1980%2Fgormcrud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gopher1980%2Fgormcrud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gopher1980","download_url":"https://codeload.github.com/gopher1980/gormcrud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gopher1980%2Fgormcrud/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266761354,"owners_count":23980291,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["crud","crud-api","crud-generator","go","gorm","gorm-sample","module"],"created_at":"2024-12-23T17:17:59.736Z","updated_at":"2025-07-23T22:34:09.702Z","avatar_url":"https://github.com/gopher1980.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gormcrud\n\nMotivation for this project is to provide the a Golang module for   it can drive all CRUD api of your GORM entities.\n\nExample (gorilla/mux):\n\n```golang\n\tr := mux.NewRouter()\n        gormcrud.MapMux(r, db).\n                NewMap(\"/api/v1/author\", Author{}, []Author{}).Full().\n                NewMap(\"/api/v1/category\", Category{}, []Category{}).Full().\n                NewMap(\"/api/v1/tag\", Tag{}, []Tag{}).Full().\n                NewMap(\"/api/v1/note\", Note{}, []Note{}).Full()\n        http.Handle(\"/\", r)\n\tlog.Fatal(http.ListenAndServe(addr, nil))\n```\nfull example mux https://github.com/gopher1980/gormcrud/blob/master/mux_example/main.go\n\n\nExample (Gin Web Framework):\n\n```golang\n        r := gin.Default()\n        gormcrud.MapGin(r, db).\n                NewMap(\"/api/v1/author\", Author{}, []Author{}).Full().\n                NewMap(\"/api/v1/category\", Category{}, []Category{}).Full().\n                NewMap(\"/api/v1/tag\", Tag{}, []Tag{}).Full().\n                NewMap(\"/api/v1/note\", Note{}, []Note{}).Full()\n\n        r.Run(addr)\n```\n\nfull example gin https://github.com/gopher1980/gormcrud/blob/master/gin_example/main.go\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgopher1980%2Fgormcrud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgopher1980%2Fgormcrud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgopher1980%2Fgormcrud/lists"}