{"id":51014963,"url":"https://github.com/iikuzmychov/superstrong.types","last_synced_at":"2026-06-21T09:01:57.146Z","repository":{"id":362372361,"uuid":"1258385158","full_name":"iikuzmychov/SuperStrong.Types","owner":"iikuzmychov","description":"Strong types for .NET — define once, use everywhere!","archived":false,"fork":false,"pushed_at":"2026-06-20T00:57:48.000Z","size":572,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-20T01:04:05.474Z","etag":null,"topics":["code-generators","ddd","domain-driven-design","primitive-obsession","source-generators","strong-types","strongly-typed","strongly-typed-id","super-strong","value-objects"],"latest_commit_sha":null,"homepage":"https://superstrong.dev","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/iikuzmychov.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":null,"dco":null,"cla":null}},"created_at":"2026-06-03T14:27:06.000Z","updated_at":"2026-06-20T00:57:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"68929f11-92a4-4eb2-82dc-033a0dfa53d2","html_url":"https://github.com/iikuzmychov/SuperStrong.Types","commit_stats":null,"previous_names":["iikuzmychov/superstrong"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iikuzmychov/SuperStrong.Types","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iikuzmychov%2FSuperStrong.Types","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iikuzmychov%2FSuperStrong.Types/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iikuzmychov%2FSuperStrong.Types/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iikuzmychov%2FSuperStrong.Types/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iikuzmychov","download_url":"https://codeload.github.com/iikuzmychov/SuperStrong.Types/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iikuzmychov%2FSuperStrong.Types/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34603588,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-21T02:00:05.568Z","response_time":54,"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":["code-generators","ddd","domain-driven-design","primitive-obsession","source-generators","strong-types","strongly-typed","strongly-typed-id","super-strong","value-objects"],"created_at":"2026-06-21T09:01:55.844Z","updated_at":"2026-06-21T09:01:57.129Z","avatar_url":"https://github.com/iikuzmychov.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"https://superstrong.dev/img/logo.png\" alt=\"SuperStrong.Types\" width=\"160\" /\u003e\n\n# SuperStrong.Types\n\n**Strong types for .NET — define once, use everywhere!**\n\n[![NuGet](https://img.shields.io/nuget/v/SuperStrong.Types?style=for-the-badge\u0026logo=nuget\u0026label=NuGet)](https://www.nuget.org/packages/SuperStrong.Types/)\n[![Docs](https://img.shields.io/badge/Docs-online-blue?style=for-the-badge)](https://superstrong.dev/)\n[![License](https://img.shields.io/github/license/iikuzmychov/SuperStrong.Types?style=for-the-badge\u0026label=License)](https://github.com/iikuzmychov/SuperStrong.Types/blob/master/LICENSE.md)\n\n\u003c/div\u003e\n\n\u003e [!WARNING]\n\u003e SuperStrong.Types is in beta: the API and features are not in final shape yet.\n\n## What does this library do?\n\nYou write this:\n\n```csharp\n[StrongType\u003cGuid\u003e]\npublic sealed partial class UserId;\n```\n\nYou get auto-generated:\n\n- wrapping: `_value`, `From(...)`, `TryFrom(...)`, `AsPrimitive()`, `IStrongType\u003c,\u003e`\n- equality: `==`, `!=`, `Equals(...)`, `GetHashCode()`, `IEquatable\u003c\u003e`, `IEqualityOperators\u003c,,\u003e`\n- comparison: `\u003c`, `\u003c=`, `\u003e`, `\u003e=`, `IComparable\u003c\u003e`, `IComparisonOperators\u003c,,\u003e`\n- formatting: `ToString(...)`, `IFormattable`, `ISpanFormattable`, `IUtf8SpanFormattable`\n- parsing: `IParsable\u003c\u003e`, `ISpanParsable\u003c\u003e`, `IUtf8SpanParsable\u003c\u003e`\n- conversion: `IConvertible`, `TypeConverter`, `JsonConverter` \n\nYou can easily integrate it with:\n\n- ASP.NET Core\n- EF Core\n- Hot Chocolate\n- Newtonsoft.Json\n\nand more coming soon: OpenAPI, Dapper, MessagePack, ...\n\n## How to install?\n\nInstall the package from [NuGet](https://www.nuget.org/packages/SuperStrong.Types):\n\n```sh\ndotnet add package SuperStrong.Types --preview\n```\n\nThis library targets **.NET 10**, so your project should target .NET 10 or higher to be compatible with SuperStrong.Types.\n\n## Why use this library?\n\nFighting [primitive obsession](https://superstrong.dev/preface/primitive-obsession) usually requires a lot of boilerplate.\n\nSuperStrong.Types generates that boilerplate for you, so you can focus on modelling your domain instead of writing repetitive code.\n\n## What's next?\n\n- Find out more in the [tutorial](https://superstrong.dev/tutorial/getting-started)\n- Learn about strong type [validation](https://superstrong.dev/tutorial/validation) and [customization](https://superstrong.dev/tutorial/customization)\n- Take a look at the available [integrations](https://superstrong.dev/integrations/ef-core)\n- Compare SuperStrong.Types with [alternatives](https://superstrong.dev/alternatives/strongly-typed-id)\n- Do 10 push-ups, 10 pull-ups, and 10 squats\n\n## Acknowledgements\n\nSuperStrong.Types is inspired by two excellent libraries:\n\n- [StronglyTypedId](https://github.com/andrewlock/StronglyTypedId) by Andrew Lock\n- [Vogen](https://github.com/SteveDunn/Vogen) by Steve Dunn\n\nThanks to both authors for the ideas and groundwork.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiikuzmychov%2Fsuperstrong.types","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiikuzmychov%2Fsuperstrong.types","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiikuzmychov%2Fsuperstrong.types/lists"}