{"id":15011600,"url":"https://github.com/emgarten/sleet","last_synced_at":"2026-03-04T07:00:53.729Z","repository":{"id":37952903,"uuid":"52654507","full_name":"emgarten/Sleet","owner":"emgarten","description":"A static nuget feed generator for Azure Storage, AWS S3, and more.","archived":false,"fork":false,"pushed_at":"2026-03-03T07:33:12.000Z","size":2266,"stargazers_count":404,"open_issues_count":6,"forks_count":47,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-03-03T09:26:11.362Z","etag":null,"topics":["feed-generator","nuget","nupkgs"],"latest_commit_sha":null,"homepage":"","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/emgarten.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2016-02-27T06:58:46.000Z","updated_at":"2026-03-03T07:33:11.000Z","dependencies_parsed_at":"2024-01-05T20:51:56.883Z","dependency_job_id":"baf0ff1f-a117-47f4-9c82-2e67ded26d12","html_url":"https://github.com/emgarten/Sleet","commit_stats":{"total_commits":454,"total_committers":28,"mean_commits":"16.214285714285715","dds":"0.17400881057268724","last_synced_commit":"df1a358d631718126dfda19e9b0663ad8a893462"},"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/emgarten/Sleet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emgarten%2FSleet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emgarten%2FSleet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emgarten%2FSleet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emgarten%2FSleet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emgarten","download_url":"https://codeload.github.com/emgarten/Sleet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emgarten%2FSleet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30075425,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T05:31:57.858Z","status":"ssl_error","status_checked_at":"2026-03-04T05:31:38.462Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["feed-generator","nuget","nupkgs"],"created_at":"2024-09-24T19:41:19.436Z","updated_at":"2026-03-04T07:00:53.716Z","avatar_url":"https://github.com/emgarten.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Build Status\n\n| Unit tests | Functional tests |\n| --- | --- |\n| [![.NET test](https://github.com/emgarten/Sleet/actions/workflows/dotnet.yml/badge.svg)](https://github.com/emgarten/Sleet/actions/workflows/dotnet.yml) | [![Functional Tests](https://github.com/emgarten/Sleet/actions/workflows/functional.yml/badge.svg)](https://github.com/emgarten/Sleet/actions/workflows/functional.yml) |\n\n# What is Sleet?\n\nSleet is a static NuGet package feed generator.\n\n* **Serverless**. Create static feeds directly on *Azure Storage*, *Amazon S3* or another S3 compatible storage. No compute required.\n* **Cross platform**. Sleet is built in .NET, it can run on *.NET Framework*, *Mono*, or [dotnet CLI](https://github.com/dotnet/cli)\n* **Fast.** Static feeds are created using the [NuGet v3 feed format](https://docs.microsoft.com/en-us/nuget/api/overview).\n* **Simple.** Sleet is a simple command line tool that can add, remove, and update packages.\n* **Flexible.** Configuration and credentials can be set using files, env vars, command line args, or AWS specific patterns to support a variety of workflows and CI builds.\n\n## Why use static feeds?\n\n* Package binaries are typically kept outside of git repos, static feeds provide a long term storage solution that can be paired with checked in code.\n* NuGet feeds are typically read for restore far more than they are updated.\n* Cloud storage accounts are a cheap and secure way to share nupkgs for public feeds.\n* You keep full control of your packages.\n\n## Getting Sleet\n\n### Manually getting sleet.exe (Windows and Mono)\n1. Download the latest SleetExe nupkg from [NuGet.org](https://www.nuget.org/packages/SleetExe)\n1. Extract *tools/Sleet.exe* to a local folder and run it.\n\n### Install dotnet global tool\n1. `dotnet tool install -g sleet`\n1. `sleet` should now be on your *PATH*\n\n## Read the guides\n\nDocumentation can be found in this repo under [/doc](doc/index.md)\n\n### Quick start guides\n\nThese provide a walk through on the basics of configuring sleet, creating, and using a feed.\n\n* [Setting up an Azure feed](doc/feed-type-azure.md)\n* [Setting up an AWS S3 feed](doc/feed-type-s3.md)\n* [Setting up a local feed with IIS hosting](doc/feed-type-local.md)\n* [Integration with CI Server](doc/ci-server.md)\n* [Setting up a private feed on AWS using S3 + CloudFront + Lambdas](doc/private-feed-s3.md)\n\nCheck out the full getting started guide [here](http://emgarten.com/2016/04/25/how-to-host-a-nuget-v3-feed-on-azure-storage/).\n\n## Contributing\n\nWe welcome contributions. If you are interested in contributing to Sleet report an issue or open a pull request to propose a change.\n\n## Sleet is..\n\nCold static packages from the cloud. ☁️ + 📦 = ❄️\n\n## History\n\nSleet was created to achieve the original goals of the NuGet v3 feed format: Provide maximum availability and performance for NuGet restore by using only static files.\n\nThe v3 feed format was designed to do all compute when pushing a new package since updates are infrequent compared to the number of times a package is read for restore. Static files also remove the need to run a specific server to host the feed, allowing a simple file service to handle it.\n\n## Related projects\n\n* [Sleet.Azure](https://github.com/kzu/Sleet.Azure) provides MSBuild props/targets for running Sleet.\n* [Sleet.Search](https://github.com/emgarten/Sleet.Search) provides a search service for Sleet feeds.\n\n## License\n\n[MIT License](https://github.com/emgarten/Sleet/blob/main/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femgarten%2Fsleet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femgarten%2Fsleet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femgarten%2Fsleet/lists"}