{"id":17680417,"url":"https://github.com/samueleaton/wiz","last_synced_at":"2025-05-08T19:41:51.432Z","repository":{"id":92975708,"uuid":"334544337","full_name":"samueleaton/wiz","owner":"samueleaton","description":"The F# web framework designed for clarity and speed","archived":false,"fork":false,"pushed_at":"2021-02-11T23:52:08.000Z","size":28,"stargazers_count":37,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-31T17:54:23.015Z","etag":null,"topics":["asp-net","dotnet","fsharp","http","http-server","web-framework","webserver","wiz"],"latest_commit_sha":null,"homepage":"https://wiz.run","language":"F#","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/samueleaton.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":"2021-01-31T00:53:12.000Z","updated_at":"2025-03-02T09:40:20.000Z","dependencies_parsed_at":"2023-03-13T17:24:00.222Z","dependency_job_id":null,"html_url":"https://github.com/samueleaton/wiz","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samueleaton%2Fwiz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samueleaton%2Fwiz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samueleaton%2Fwiz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samueleaton%2Fwiz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samueleaton","download_url":"https://codeload.github.com/samueleaton/wiz/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253135450,"owners_count":21859646,"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","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":["asp-net","dotnet","fsharp","http","http-server","web-framework","webserver","wiz"],"created_at":"2024-10-24T09:06:57.504Z","updated_at":"2025-05-08T19:41:51.385Z","avatar_url":"https://github.com/samueleaton.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Wiz](assets/wiz-banner.png)\n\n\u003cbr /\u003e\u003cbr /\u003e\n\n*The F# web framework designed for clarity and speed*\n\n→ [https://wiz.run](https://wiz.run)\n\n```fsharp\nopen Wiz.Server\nopen Wiz.Route\nopen Wiz.Context\n\nlet handler ctx =\n  ctx |\u003e sendText \"Hello, World\"\n\ngenServer()\n|\u003e setRoutes [get \"/\" handler]\n|\u003e run\n```\n\n\u003cbr /\u003e\u003cbr /\u003e\n\n## Install\n\nVia the .Net CLI:\n\n```bash\ndotnet add package Wiz\n```\n\n## Example\n\nHere is a fully functional server with 2 routes:\n\n```fsharp\nmodule Program\n  open Wiz.Server\n  open Wiz.Route\n  open Wiz.Context\n\n  ///////////////////////////\n  // define route handlers\n  ///////////////////////////\n  let handleHome ctx =\n    ctx\n    |\u003e sendText \"Show me some magic!\"\n\n  let handleSpell ctx =\n    ctx\n    |\u003e sendText \"Abra Kadabra Kalamazoo!\"\n\n  ///////////////////////////\n  // map routes to handlers\n  ///////////////////////////\n  let routes = [\n    get \"/\" handleHome\n    get \"/spell\" handleSpell\n  ]\n\n  [\u003cEntryPoint\u003e]\n  let main args =\n    genServer()\n    |\u003e setRoutes routes\n    |\u003e run\n```\n\n## About Wiz\n\nWiz is the result of attentively designing what an F# HTTP server API should look like, and then building that API.\n\nWiz's goal is to make it *SO* easy to interface with ASP.NET that its the most developer-friendly HTTP framework in all of .NET. To earn that title, Wiz needs to be well documented, intuitive, easily configurable, and fast as hell.\n\n\n\u003cbr /\u003e\n\n![Wiz Moon Logo](assets/wiz-icon.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamueleaton%2Fwiz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamueleaton%2Fwiz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamueleaton%2Fwiz/lists"}