{"id":16678928,"url":"https://github.com/joncloud/iis-expressify","last_synced_at":"2025-10-06T09:32:27.058Z","repository":{"id":78825251,"uuid":"136566224","full_name":"joncloud/iis-expressify","owner":"joncloud","description":"IISExpressify is a simple wrapper for running IIS Express.","archived":false,"fork":false,"pushed_at":"2020-08-08T04:16:25.000Z","size":32,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"publish","last_synced_at":"2025-03-06T04:36:31.755Z","etag":null,"topics":["asp-net","iis","iisexpress","integration-testing","testing","wcf","webforms"],"latest_commit_sha":null,"homepage":null,"language":"C#","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/joncloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2018-06-08T04:25:59.000Z","updated_at":"2021-01-16T12:53:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"a6a26e0d-1419-4965-b374-97d1373a3d5b","html_url":"https://github.com/joncloud/iis-expressify","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fiis-expressify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fiis-expressify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fiis-expressify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joncloud%2Fiis-expressify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joncloud","download_url":"https://codeload.github.com/joncloud/iis-expressify/tar.gz/refs/heads/publish","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243360780,"owners_count":20278434,"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","iis","iisexpress","integration-testing","testing","wcf","webforms"],"created_at":"2024-10-12T13:32:18.535Z","updated_at":"2025-10-06T09:32:22.038Z","avatar_url":"https://github.com/joncloud.png","language":"C#","readme":"# IISExpressify\n[![NuGet](https://img.shields.io/nuget/v/IISExpressify.svg)](https://www.nuget.org/packages/IISExpressify/)\n\n## Description\nIISExpressify is a simple wrapper for running IIS Express.\n\n## Licensing\nReleased under the MIT License.  See the [LICENSE][] file for further details.\n\n[license]: LICENSE.md\n\n## Installation\nIn the Package Manager Console execute\n\n```powershell\nInstall-Package IISExpressify\n```\n\nOr update `*.csproj` to include a dependency on\n\n```xml\n\u003cItemGroup\u003e\n  \u003cPackageReference Include=\"IISExpressify\" Version=\"0.1.0-*\" /\u003e\n\u003c/ItemGroup\u003e\n```\n\n## Usage\nSample HTTP server running on 8080:\n```csharp\nusing IISExpressify;\nusing System.IO;\n\nstatic async Task Main(string[] args) {\n  var path = Environment.CurrentDirectory;\n  var file = Path.Combine(path, \"test.txt\");\n  File.WriteAllText(file, \"lorem ipsum\");\n\n  using (var iisExpress = IISExpress.Http().PhysicalPath(path).Port(8080).Start())\n  using (var http = iisExpress.CreateHttpClient()) {\n    var contents = await http.GetStringAsync(\"/test.txt\");\n    Console.WriteLine(contents);\n  }\n}\n```\n\nRunning this will respond with\n```PowerShell\n\u003e dotnet MyProgram.dll\nlorem ipsum\n```\n\nFor additional usage see [Tests][].\n\n[Tests]: tests/IISExpressify.Tests\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoncloud%2Fiis-expressify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoncloud%2Fiis-expressify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoncloud%2Fiis-expressify/lists"}