DotVVM alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view DotVVM alternatives based on common mentions on social networks and blogs.
-
ASP.NET Core
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux. -
ASP.NET MVC
ASP.NET is a free web framework for building great web sites and applications -
Suave.IO
Suave is a simple web development F# library providing a lightweight web server and a set of combinators to manipulate route flow and task composition. -
dotNetify
Simple, lightweight, yet powerful way to build real-time web apps. -
Saturn
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern -
Signals
Signals is a framework for developing enterprise and SaaS applications that follows the USE-CASE driven methodology
Free Global Payroll designed for tech teams
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of DotVVM or a related project?
Popular Comparisons
README
Component-based MVVM framework for ASP.NET
DotVVM lets you build interactive web UIs with just C# and HTML using the MVVM approach.
It simplifies building of line of business web apps and ships with many built-in controls like GridView, FileUpload, Validator and more.
How does DotVVM work?
The Views in DotVVM use HTML syntax with controls and data-bindings.
The ViewModels are plain C# objects with properties and methods.
You can access the ViewModel properties using {value: Name}
and call ViewModel methods using {command: Submit()}
.
<div class="form-control">
<dot:TextBox Text="{value: Name}" />
</div>
<div class="form-control">
<dot:TextBox Text="{value: Email}" />
</div>
<div class="button-bar">
<dot:Button Text="Submit" Click="{command: Submit()}" />
</div>
public class ContactFormViewModel
{
[Required]
public string Name { get; set; }
[EmailAddress]
public string Email { get; set; }
public void Submit()
{
// ...
}
}
DotVVM comes with many features including:
- A rich set of built-in controls
- Routing
- Master pages
- Advanced validation rules integrated with .NET data annotation attributes
- Support for .NET cultures, number & date formats and RESX localization
- SPA (Single Page App) support
- User controls
- MVVM with testable ViewModels and Dependency injection
- Server-side rendering
- Binding to REST APIs and patching viewmodel using static commands
- Can run side-by-side with other ASP.NET frameworks (Web Forms, MVC, Razor Pages)
- IntelliSense and tooling for Visual Studio 2017, 2019 and Code
Getting started with DotVVM
Learn the basic principles of DotVVM in our DotVVM Academy tutorials.
The easiest way to start with DotVVM is to download DotVVM for Visual Studio and do File > New > Project.
- Free extension for Visual Studio 2017
- Free extension for Visual Studio 2019
You can also install DotVVM in existing ASP.NET projects and use it side-by-side with other ASP.NET frameworks (Web Forms, MVC, Razor Pages).
There is also dotnet new template for those who prefer command-line approach. You can get our free extension for Visual Studio Code.
Current status
DotVVM is used in production by hundreds of developers and companies. The first stable release was in June 2016.
ASP.NET Core | OWIN | |
---|---|---|
Current stable version | DotVVM.AspNetCore 4.0.2 |
DotVVM.Owin 4.0.2 |
Minimum runtime version | .NET Core 3.1 |
.NET 4.7.2 |
Minimum ASP.NET version | ASP.NET Core 3.1 |
OWIN 3.0.1 |
You can find the plans for next releases in the [roadmap](roadmap.md).
Commercial components & tools
DotVVM framework is open source and will always be free to use. It's developed under Apache license.
There are also free extensions for Visual Studio and VS Code available. They are not open source, but they will also be free to use.
You can get more productive with DotVVM and support development of the framework by purchasing commercial components and tools developed by the creators of the framework:
- Bootstrap for DotVVM brings more than fifty Bootstrap 3 and 4 controls that are easy to use and integrate well with DotVVM validation and data-bindings.
- DotVVM Business Pack contains more than 30 enterprise-ready controls for large line of business web apps.
- DotVVM Pro for Visual Studio offers more features than the free extensions - IntelliSense for data-binding expressions, real-time error checking and much more.
Get involved
We'll be glad to accept any contribution. It doesn't need to be a pull-request - you can help us by spreading the word about the project in a blog or a user group, fix a typo in a documentation or send us your feedback and thoughts.
You can find more info in [Contribution Guidelines](contributing.md). We kindly ask you to respect the [Code of Conduct](code-of-conduct.md).
Feedback
Feedback is crucial to make DotVVM better. You can reach us at any time on our Gitter Chat.
.NET Foundation
This project is supported by the .NET Foundation.
Further reading
*Note that all licence references and agreements mentioned in the DotVVM README section above
are relevant to that project's source code only.