{"id":13724331,"url":"https://github.com/codegangsta/bwag","last_synced_at":"2025-08-20T08:31:53.122Z","repository":{"id":21479578,"uuid":"24798304","full_name":"codegangsta/bwag","owner":"codegangsta","description":"Source code for the book \"Building Web Apps with Go\"","archived":false,"fork":false,"pushed_at":"2021-09-23T21:23:58.000Z","size":3702,"stargazers_count":199,"open_issues_count":11,"forks_count":48,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-07T12:22:28.925Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://codegangsta.gitbooks.io/building-web-apps-with-go/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codegangsta.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}},"created_at":"2014-10-04T18:54:11.000Z","updated_at":"2025-03-23T08:56:59.000Z","dependencies_parsed_at":"2022-08-21T14:40:56.556Z","dependency_job_id":null,"html_url":"https://github.com/codegangsta/bwag","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codegangsta/bwag","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codegangsta%2Fbwag","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codegangsta%2Fbwag/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codegangsta%2Fbwag/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codegangsta%2Fbwag/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codegangsta","download_url":"https://codeload.github.com/codegangsta/bwag/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codegangsta%2Fbwag/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271287619,"owners_count":24733424,"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-08-20T02:00:09.606Z","response_time":69,"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":[],"created_at":"2024-08-03T01:01:55.123Z","updated_at":"2025-08-20T08:31:52.178Z","avatar_url":"https://github.com/codegangsta.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Introduction\n\nWelcome to **Building Web Apps with Go**! If you are reading this then you have just started your journey from noob to pro. No seriously, web programming in Go is so fun and easy that you won't even notice how much information you are learning along the way!\n\nKeep in mind that there are still portions of this book that are incomplete and need some love. The beauty of open source publishing is that I can give you an incomplete book and it is still of value to you.\n\nBefore we get into all the nitty gritty details, let's start with some ground rules:\n\n## Prerequisites\nTo keep this tutorial small and focused, I'm assuming that you are prepared in the following ways:\n\n1. You have installed the [Go Programming Language](https://golang.org).\n2. You have setup a `GOPATH` by following the [How to Write Go Code](https://golang.org/doc/code.html#Organization) tutorial.\n3. You are somewhat familiar with the basics of Go. (The [Go Tour](http://tour.golang.org) is a pretty good place to start)\n4. You have installed all the [required packages](#required-packages)\n5. You have installed the [Heroku Toolbelt](https://toolbelt.heroku.com/)\n6. You have a [Heroku](https://id.heroku.com/signup) account\n\n## Required Packages\nFor the most part we will be using the built in packages from the standard library to build out our web apps. Certain lessons such as Databases, Middleware and URL Routing will require a third party package. Here is a list of all the go packages you will need to install before starting:\n\nName | Import Path | Description\n---- | ----------- | ----------- \n[httprouter](https://github.com/julienschmidt/httprouter) | github.com/julienschmidt/httprouter | A high performance HTTP request router that scales well\n[Negroni](https://github.com/codegangsta/negroni) | github.com/codegangsta/negroni | Idiomatic HTTP Middleware\n[Black Friday](https://github.com/russross/blackfriday) | github.com/russross/blackfriday | a markdown processor\n[Render](https://github.com/unrolled/render/tree/v1) | gopkg.in/unrolled/render.v1 | Easy rendering for JSON, XML, and HTML\n[SQLite3](https://github.com/mattn/go-sqlite3) | github.com/mattn/go-sqlite3 | sqlite3 driver for go\n\nYou can install (or update) these packages by running the following command in your console\n\n``` bash\ngo get -u \u003cimport_path\u003e\n```\n\nFor instance, if you wish to install Negroni, the following command would be:\n\n``` bash\ngo get -u github.com/codegangsta/negroni\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodegangsta%2Fbwag","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodegangsta%2Fbwag","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodegangsta%2Fbwag/lists"}