{"id":15427442,"url":"https://github.com/itsnoproblem/frameserver-go","last_synced_at":"2026-04-18T19:31:50.703Z","repository":{"id":222592405,"uuid":"757826889","full_name":"itsnoproblem/frameserver-go","owner":"itsnoproblem","description":"A Farcaster frame server implementation written in Go","archived":false,"fork":false,"pushed_at":"2024-02-15T06:52:14.000Z","size":1265,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-19T12:54:55.340Z","etag":null,"topics":["farcaster","frames","go","golang","social-media"],"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/itsnoproblem.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":"2024-02-15T04:09:29.000Z","updated_at":"2025-08-18T07:41:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"4c562a85-a294-476b-a1ba-ac87e60fbf09","html_url":"https://github.com/itsnoproblem/frameserver-go","commit_stats":null,"previous_names":["itsnoproblem/frameserver-go"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itsnoproblem/frameserver-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsnoproblem%2Fframeserver-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsnoproblem%2Fframeserver-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsnoproblem%2Fframeserver-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsnoproblem%2Fframeserver-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsnoproblem","download_url":"https://codeload.github.com/itsnoproblem/frameserver-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsnoproblem%2Fframeserver-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31982527,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T17:30:12.329Z","status":"ssl_error","status_checked_at":"2026-04-18T17:29:59.069Z","response_time":103,"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":["farcaster","frames","go","golang","social-media"],"created_at":"2024-10-01T18:00:20.355Z","updated_at":"2026-04-18T19:31:50.659Z","avatar_url":"https://github.com/itsnoproblem.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# frameserver-go\nA Farcaster frame server implementation written in Go.\n\n----------------\n\nThis repository is meant to demonstrate how to implement a Farcaster frame server with Golang. There are two main \ncomponents:\n\n1. A server that produces [farcaster-compliant](https://docs.farcaster.xyz/reference/frames/spec) frame markup.\n2. A \"tile maker\" utility for creating simple image tiles. \n\nThis is a \"hello world\" demonstration. You will find the endpoints served by the http server inside the `greeting` package.\n\nThe main package and application entrypoint are in `cmd/frameserver/main.go`.\n\n![demo tile](./static/demo-tile.png)\n\n### Creating an image tile:\n```go\ntileMaker, err := tile.Maker(tilesURL, outputDir, fontsDir)\nif err != nil {\n\tlog.Fatal(err)\n}\n\ntileSpec := tile.Spec{\n    Text:            \"gm farcaster!\",\n    BackgroundImage: \"/path/to/background.jpg\", // can be a URL to a jpg/png \n    TextColor:       color.White,\n    OverlayColor:    color.RGBA{R: 0, G: 0, B: 0, A: 80},\n}\n\ntileURL, err := tileMaker.MakeTile(tileSpec)\n```\n\n### Creating a frame:\n```go\nframe := farcaster.Frame{\n    Version: \"vNext\", \n    PostURL: \"https://example.com/post\",\n    Image: farcaster.Image{\n        URL:         \"https://example.com/static/tiles/abc123.png\",\n        AspectRatio: farcaster.AspectRatio_2_1,\n    },\n    Buttons: []farcaster.Button{\n        farcaster.NewPostButton(\"reveal\"),\n    },\n}\n```\n\n### Running the demo server:\n```bash\ndocker build -t frameserver-go . \u0026\u0026 \\\ndocker run \\\n  -e PORT=8080 \\\n  -e APP_URL=http://127.0.0.1:8080 \\\n  -e HUB_URL=https://nemes.farcaster.xyz:2281 \\\n  -e STATIC_DIR=/root/static \\\n  -p 8080:8080 \\\n  frameserver-go\n  \n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsnoproblem%2Fframeserver-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsnoproblem%2Fframeserver-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsnoproblem%2Fframeserver-go/lists"}