{"id":14963773,"url":"https://github.com/canton7/stylet","last_synced_at":"2025-05-14T18:05:35.203Z","repository":{"id":15051811,"uuid":"17777913","full_name":"canton7/Stylet","owner":"canton7","description":"A very lightweight but powerful ViewModel-First MVVM framework for WPF for .NET Framework and .NET Core, inspired by Caliburn.Micro.","archived":false,"fork":false,"pushed_at":"2024-06-24T08:11:28.000Z","size":4195,"stargazers_count":1006,"open_issues_count":23,"forks_count":145,"subscribers_count":35,"default_branch":"master","last_synced_at":"2025-05-13T19:14:46.611Z","etag":null,"topics":["mvvm","mvvm-framework","stylet","wpf"],"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/canton7.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.txt","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","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},"funding":{"ko_fi":"canton7","custom":["https://www.paypal.com/donate?hosted_button_id=92FADFBYS42MU"],"liberapay":"canton7"}},"created_at":"2014-03-15T15:05:21.000Z","updated_at":"2025-05-13T17:14:19.000Z","dependencies_parsed_at":"2023-02-10T13:55:15.838Z","dependency_job_id":"72242164-2b1c-4df4-a37e-a4056137e737","html_url":"https://github.com/canton7/Stylet","commit_stats":{"total_commits":751,"total_committers":9,"mean_commits":83.44444444444444,"dds":"0.011984021304926817","last_synced_commit":"6992976d1d567acfb832fc80085dbb5f894078e5"},"previous_names":[],"tags_count":66,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canton7%2FStylet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canton7%2FStylet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canton7%2FStylet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/canton7%2FStylet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/canton7","download_url":"https://codeload.github.com/canton7/Stylet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254198514,"owners_count":22030965,"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":["mvvm","mvvm-framework","stylet","wpf"],"created_at":"2024-09-24T13:32:07.845Z","updated_at":"2025-05-14T18:05:30.190Z","avatar_url":"https://github.com/canton7.png","language":"C#","funding_links":["https://ko-fi.com/canton7","https://www.paypal.com/donate?hosted_button_id=92FADFBYS42MU","https://liberapay.com/canton7"],"categories":[],"sub_categories":[],"readme":"![Project Icon](StyletIcon.png) Stylet\n======================================\n\n[![NuGet](https://img.shields.io/nuget/v/Stylet.svg)](https://www.nuget.org/packages/Stylet/)\n[![Build status](https://ci.appveyor.com/api/projects/status/nqucthach0x6gkil?svg=true)](https://ci.appveyor.com/project/canton7/stylet)\n\nIntroduction\n------------\n\nStylet is a small but powerful ViewModel-first MVVM framework for WPF (.NET 4.5.2+ and .NET Core 3.0+), which allows you to write maintainable and extensible code in a way which is easy to test.\nStylet's aims are to:\n\n - Solve the blockers, niggles, and annoyances which hamper MVVM development without a framework, using simple but powerful concepts.\n - Be obvious to people picking up your project for the first time: there's very little magic\n - Be easy to verify/validate. The LOC count is low, and it comes with a very comprehensive test suite. The code is well-written and well-documented.\n - Be flexible while providing sensible defaults. Almost any part of the framework can be overridden if you wish, but you probably won't want to.\n\nIt is inspired by [Caliburn.Micro](http://caliburnmicro.com/), and shares many of its concepts, but removes most of the magic (replacing it with more powerful alternatives), and simplifies parts considerably by targeting only MVVM, WPF and .NET 4.5.2.\n\n\nGetting Started\n---------------\n\n### .NET 5.0+ / .NET Core\n\nFor .NET Core and .NET 5.0+ projects, the quickest way to get started is by using `dotnet new` with Stylet's template.\n\nOpen a command window where you want to create your new project, and install the Stylet templates using:\n\n```\ndotnet new -i Stylet.Templates\n```\n\nThen create a new .NET 5.0 project with:\n\n```\ndotnet new stylet -n MyStyletProject\n```\n\n(changing `MyStyletProject` as appropriate).\n\nIf you want to create a .NET Core 3.1 project, then:\n\n```\ndotnet new stylet -F netcoreapp3.1 -n MyStyletProject\n```\n\nIf you want to set up your project manually, install the [Stylet](https://www.nuget.org/packages/Stylet) package, then follow the instructions in the [Quick Start](https://github.com/canton7/Stylet/wiki/Quick-Start).\n\nStylet requires .NET 5.0+ or .NET Core 3.0+.\n\n\n### .NET Framework (\u003c= .NET 4)\n\nFor .NET Framework projects, the quickest way to get started is to create a new \"WPF Application\" project, then install the NuGet package [Stylet.Start](https://www.nuget.org/packages/Stylet.Start).\nThis will install Stylet, and set up a simple skeleton project.\n\nSee [Quick Start](https://github.com/canton7/Stylet/wiki/Quick-Start) for more details.\n\nIf you want to set up your project manually, install the [Stylet](https://www.nuget.org/packages/Stylet) package, then follow the instructions in the [Quick Start](https://github.com/canton7/Stylet/wiki/Quick-Start).\n\nStylet requires .NET 4.5.2 (Visual Studio 2012 or higher).\n\n\nDocumentation\n-------------\n\n[The Wiki is the documentation source](https://github.com/canton7/Stylet/wiki).\nThere's loads of information there - go and have a look, or start with the [Quick Start](https://github.com/canton7/Stylet/wiki/Quick-Start).\n\n\nContributing\n------------\n\nContributions are always welcome.\nIf you've got a problem or a question, [raise an issue](https://github.com/canton7/Stylet/issues).\nIf you've got code you want to contribute, please read [the Contributing guidelines](https://github.com/canton7/Stylet/wiki/Contributing) first of all.\nCreate a feature branch off the `develop` branch, add your changes there, and submit it as a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcanton7%2Fstylet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcanton7%2Fstylet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcanton7%2Fstylet/lists"}