{"id":51115198,"url":"https://github.com/mukailasam/igo","last_synced_at":"2026-06-24T21:01:26.029Z","repository":{"id":324526618,"uuid":"1088261526","full_name":"mukailasam/igo","owner":"mukailasam","description":"igo.go is a simple and lightweight micro-framework for Go web-applications.","archived":false,"fork":false,"pushed_at":"2025-11-16T11:11:26.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-16T13:05:37.515Z","etag":null,"topics":["go","http","igo","rest","web-framework"],"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/mukailasam.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-02T16:23:35.000Z","updated_at":"2025-11-16T11:03:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mukailasam/igo","commit_stats":null,"previous_names":["mukailasam/igo"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mukailasam/igo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukailasam%2Figo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukailasam%2Figo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukailasam%2Figo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukailasam%2Figo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mukailasam","download_url":"https://codeload.github.com/mukailasam/igo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mukailasam%2Figo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34749211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"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":["go","http","igo","rest","web-framework"],"created_at":"2026-06-24T21:01:25.061Z","updated_at":"2026-06-24T21:01:26.014Z","avatar_url":"https://github.com/mukailasam.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ca href=\"#\"\u003e\n\u003cimg width=\"312\" height=\"335\" alt=\"igo-logo\" src=\"assets/igo.svg\" /\u003e\n\u003c/a\u003e\n\u003c/div\u003e\n\n[![Go Version](https://img.shields.io/badge/Go-1.25+-blue.svg)](https://go.dev/)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)\n[![Go Report Card](https://goreportcard.com/badge/github.com/mukailasam/igo)](https://goreportcard.com/report/github.com/mukailasam/igo)\n\n# Igo - Go Web Framework\n\nIgo is a simple and lightweight micro web-framework for Go - inspired by [Bottle](https://bottlepy.org).  \nIt is distributed as a **single file (`igo.go`)** package and depends only on the Go standard library.\n\n## Background\n\nI built it because I wanted a Bottle-like microframework for my \u003ca href=\"https://github.com/mukailasam/codelab\"\u003e CodeLab \u003c/a\u003e - something personal, minimal, and easy to use for experimenting and creating **small Go projects** without setup overhead.\n\n\u003e The name **“Igo”** comes from the **Yoruba** word **“Ìgò”**, which means **“bottle.”** \\\n\u003e ma pa igo lo ri e😂\n\n## Install\n\n```go\ngo get -u github.com/mukailasam/igo\n```\n\n## Features\n\n- **Routing:** Map HTTP requests to handler functions with dynamic URL support.\n- **Utilities:** Easy access to URL parameters, form data, headers, and other HTTP features.\n- **Server:** Built-in development server powered by Go’s `net/http`.\n\nHomepage and documentation: \u003ca href=\"\"\u003ehttps://mukailasam.space/igo/docs/docs.html\u003c/a\u003e\n\n## Example Usage:\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/mukailasam/igo\"\n)\n\nfunc main() {\n\tapp := igo.NewIgo()\n\n\tapp.GET(\"/\u003cname\u003e\", func(ctx *igo.Context) {\n\t\tname := ctx.GetParam(\"name\")\n\t\tctx.Text(200, fmt.Sprintf(\"Hello, %s!\", name))\n\t})\n\n\tapp.Run(\":1337\")\n}\n```\n\n## Contributing\n\nContributions are welcome!\nTo contribute:\n\n- Fork the repository\n\n- Create a new branch\n\n- Implement your feature or fix\n\n- Open a pull request\n\nMake sure to follow Go’s code formatting and keep your commits clean and descriptive.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmukailasam%2Figo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmukailasam%2Figo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmukailasam%2Figo/lists"}