Coalesce alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view Coalesce 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 -
Giraffe
A native functional ASP.NET Core web framework for F# developers. -
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
ONLYOFFICE Docs — document collaboration in your environment
* 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 Coalesce or a related project?
README
Coalesce
Documentation · Get Started · Builds
Coalesce is a framework for rapid-development of ASP.NET Core web applications. It works from the Entity Framework Core data model that you design, automating the creation of the glue - DTOs, API Controllers, and TypeScript - that sit between your data and the UI of your application.
Fundamentals
- Code Generation: Write your data model. We'll build the DTOs, API controllers, and TypeScript files that are needed to start building a front-end UI right away. A full suite of CRUD endpoints are generated with inner-workings that are overridable.
- Extensibility: We don't want to box you in - one of the primary goals of Coalesce is to be as flexible as possible. If something that Coalesce is doing doesn't quite fit your needs, you should be able to configure it or override it easily. You should never feel like you need to eject from the framework.
- Security: Coalesce is designed with security in mind. All classes, properties, and methods can be restricted per-role, or their data even hidden entirely from the client. Row-level security can be implemented using custom data sources. The guiding principal here is that it should always be easy to know exactly what parts of your data Coalesce is exposing for you.
Features
- CRUD for EF models: For each
DbSet<>
on yourDbContext
, a full set of/get
,/save
,/delete
,/count
, and/list
endpoints are created. Each can be secured or omitted entirely via attributes, or customized with much greater granularity with custom Data Sources and/or Behaviors./list
and/count
have paging, searching, sorting, and filtering built-in. - Endpoints for Methods: For client requests that don't fit the mold of a simple CRUD action against an entity, place methods on your entities and annotate with
[Coalesce]
- controllers and TypeScript will be built for those as well. Have functions that don't belong on an entity class? Place them in a service class marked with[Coalesce]
instead - you'll get the same set of features. - Choose your Front-end: Coalesce supports both Vue and Knockout. While the paradigms used in the TypeScript code generated for each are quite different, they both make requests against the same API. At the end of the day, they both can accomplish the same tasks. The Vue stack is the recommended stack when creating new applications.
- ... and more! Check out the documentation to see all of Coalesce's features in-depth: https://intellitect.github.io/Coalesce
Get Started
The best way to get started with Coalesce is using the dotnet new
templates that have been created:
- Vue 2:
dotnet new --install IntelliTect.Coalesce.Vue.Template; dotnet new coalescevue
- Knockout:
dotnet new --install IntelliTect.Coalesce.KnockoutJS.Template; dotnet new coalesceko
This command will use the current folder name for the project names, namespaces, etc. It will create a solution in the current folder with .Data and .Web projects.
After you create your project, you should start reading through the Documentation to see all the things that Coalesce can do.
Builds
channel | build | IntelliTect.Coalesce | coalesce-vue |
---|---|---|---|
dev | |||
master |
Contributing
See the contribution guide [here](CONTRIBUTING.md).