MVC Frameworks and Libraries

Open-source projects categorized as MVC Frameworks and Libraries

Top 23 MVC Frameworks and Library Open-Source Projects

  • React

    The library for web and native user interfaces.

  • Project mention: ESLint Plugin. What was missed in the doc? | dev.to | 2024-05-09

    ESLint is a potent tool, but you cannot create a good plugin because the documentation doesn't explain how it works. For example, you want to do something with non-closured variables inside a function. It is not a trivial task. The first idea that came to my head was to find similar solutions in open source. The most popular is the react-hooks/exhaustive-deps rule. But if you try to see the sources you meet a total horror. Let's try to understand how to avoid this complexity inside ESLint plugins.

  • Vue.js

    This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core

  • Project mention: Here are the 10 projects I am contributing to over the next 6 months. Share yours | dev.to | 2024-04-13

    Vuejs

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • react-native

    A framework for building native applications using React

  • Project mention: Developing Proficiency in Multiple Programming Languages: Part 1 - My Story | dev.to | 2024-04-29

    There was always a tiny sparkle in me telling me that I want to develop mobile apps but I never pursued it. It always felt a bit complicated for me to learn development processes in a completely different industry. I did try developing mobile apps using React Native but it never felt right for me. Also, I already tried to write some Kotlin code and so far I like it, but the whole Android ecosystem is still pretty new to me and I feel there will be a lot to learn. Nevertheless, I will try to learn it in parallel with Elixir but Elixir will be my primary goal, and Kotlin / Android will go along depending on how much time I will have.

  • Angular

    Deliver web apps with confidence 🚀

  • Project mention: Angular Signals, Reactive Context, and Dynamic Dependency Tracking | dev.to | 2024-04-24

    /** * https://github.com/angular/angular/blob/75a186e321cb417685b2f13e9961906fc0aed36c/packages/core/src/render3/reactivity/untracked.ts#L15 * * packages/core/src/render3/reactivity/untracked.ts * **/ export function untracked(nonReactiveReadsFn: () => T): T { const prevConsumer = setActiveConsumer(null); try { return nonReactiveReadsFn(); } finally { setActiveConsumer(prevConsumer); } }

  • Svelte

    Cybernetically enhanced web apps

  • Project mention: Securing SvelteKit Apps with Keycloak | dev.to | 2024-05-06

    Svelte and specifically, SvelteKit is an open source web framework that makes developing web applications easier.

  • Element UI

    A Vue.js 2.0 UI Toolkit for Web

  • Meteor JS

    Meteor, the JavaScript App Platform

  • Project mention: 5 core concepts you should know about MeteorJS in 2024 | dev.to | 2024-04-29
  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • Preact

    ⚛️ Fast 3kB React alternative with the same modern API. Components & Virtual DOM.

  • Project mention: Preact vs React: A Comparative Guide | dev.to | 2024-04-23

    In this post, we get to know more about Preact, one of this year's trending libraries. And we'll compare it to React to see which one suits better for our projects.

  • Backbone.js

    Give your JS App some Backbone with Models, Views, Collections, and Events

  • Project mention: Ask HN: What are some of the most elegant codebases in your favorite language? | news.ycombinator.com | 2023-06-17
  • Alpine.js

    A rugged, minimal framework for composing JavaScript behavior in your markup.

  • Project mention: Biometric authentication with Passkeys | dev.to | 2024-03-09

    Alpine.js for reactive frontend

  • Ember.js

    Ember.js - A JavaScript framework for creating ambitious web applications

  • Project mention: Episode 24/13: Native Signals, Details on Angular/Wiz, Alan Agius on the Angular CLI | dev.to | 2024-04-05

    Similarly to Promises/A+, this effort focuses on aligning the JavaScript ecosystem. If this alignment is successful, then a standard could emerge, based on that experience. Several framework authors are collaborating here on a common model which could back their reactivity core. The current draft is based on design input from the authors/maintainers of Angular, Bubble, Ember, FAST, MobX, Preact, Qwik, RxJS, Solid, Starbeam, Svelte, Vue, Wiz, and more…

  • Polymer

    Our original Web Component library.

  • GrapesJS

    Free and Open source Web Builder Framework. Next generation tool for building templates without coding

  • Project mention: Any FOSS to make HTML websites for self-hosting? | /r/opensource | 2023-12-07

    What I found was GrapesJS. I'd definitely recommend it: https://grapesjs.com/

  • hyperapp

    1kB-ish JavaScript framework for building hypertext applications

  • Project mention: VanJS (Vanilla JavaScript): smallest reactive UI framework | news.ycombinator.com | 2023-05-25

    Please check out https://github.com/jorgebucaran/hyperapp

  • inferno

    :fire: An extremely fast, React-like JavaScript library for building modern user interfaces

  • Project mention: Inferno 8.2.3 Released! | /r/infernojs | 2023-12-11

    FormEvent event.target has been explicitly defined for this event type c337fdd

  • AdonisJs Framework

    AdonisJS is a TypeScript-first web framework for building web apps and API servers. It comes with support for testing, modern tooling, an ecosystem of official packages, and more. (by adonisjs)

  • Project mention: Hot module replacement (HMR) in AdonisJS | dev.to | 2024-04-24

    The framework users, particularly Estéban, have raised this problem several times. Here's a discussion thread for your reference.

  • million

    Optimize React performance and make your React 70% faster in minutes, not months.

  • Project mention: Show HN: Million Lint – ESLint for Performance | news.ycombinator.com | 2024-02-29

    Hey HN! Founder of Million – We’re building a tool to that helps fix slow React code. Here is a quick demo: https://youtu.be/k-5jWgpRqlQ

    Fixing web performance issues is hard. Every developer knows this experience: we insert console.log everywhere, catch some promising leads, but nothing happens before "time runs out." Eventually, the slow/buggy code never gets fixed, problems pile up on a backlog, and our end users are hurt.

    We started Million to fix this. A VSCode extension that identifies slow code and suggests fixes (like ESLint, for performance!) The website is here: https://million.dev/blog/lint

    I realized this was a problem when I tried to write an optimizing compiler for React in high school (src: https://github.com/aidenybai/million). It garnered a lot of interest (14K+ stars) and usage, but it didn't solve all user problems.

    Traditionally, devtools either hinge on full static analysis OR runtime profiling. We found success in a mixture of the two with dynamic analysis. During compilation, we inject instrumentation where it's necessary. Here is an example:

      function App({ start }) {

  • feathers

    The API and real-time application framework

  • Project mention: Ask HN: Can anyone suggest few open source projects for SaaS Boilerplate? | news.ycombinator.com | 2024-04-17

    For backend this might help https://feathersjs.com. I’m not affiliated with them, just a happy user.

  • riot

    Simple and elegant component-based UI library

  • Project mention: Button Component with RiotJS (Material Design) | dev.to | 2024-03-23

    These articles form a series focusing on RiotJS paired with BeerCSS, designed to guide you through creating components and mastering best practices for building production-ready applications. I assume you have a foundational understanding of Riot; however, feel free to refer to the documentation if needed: https://riot.js.org/documentation/

  • Mithril.js

    A JavaScript Framework for Building Brilliant Applications

  • Project mention: Ask HN: I can no longer like React, do you? | news.ycombinator.com | 2024-04-29

    I don’t enjoy React much, but (as I’ve commented before) I do love Mithril (https://mithril.js.org). Immediate-mode UI via a vDOM, like React, but small, simple, and with none of the reactivity complications. I’d never go back to building apps with pure JS.

  • blockly

    The web-based visual programming editor.

  • Project mention: Ask HN: Modern Day Equivalent to HyperCard? | news.ycombinator.com | 2024-05-01

    If your kid is already doing Scratch, Blockly is a really easy next step.

    https://developers.google.com/blockly

    Critically, Blockly can emit JavaScript and Python, plus it supports plugins for extended functionality. So the kid can stay inside the blockly universe for as long as they like, but easily peer under the hood and get into Python or JavaScript as soon as they like.

  • Aurelia 1

    The Aurelia 1 framework entry point, bringing together all the required sub-modules of Aurelia. (by aurelia)

  • knockout

    Knockout makes it easier to create rich, responsive UIs with JavaScript

  • Project mention: Do You Remember Knockoutjs? | news.ycombinator.com | 2024-01-25
  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

MVC Frameworks and Libraries related posts

  • Lit vs Rimmel - Comparing tagged-template UI libraries

    2 projects | dev.to | 9 May 2024
  • ESLint Plugin. What was missed in the doc?

    2 projects | dev.to | 9 May 2024
  • Weather Application using ReactJS | react mini project

    1 project | dev.to | 8 May 2024
  • Backend-Genese: Von PHP zu Node.js & TypeScript (Teil 1)

    2 projects | dev.to | 8 May 2024
  • Securing SvelteKit Apps with Keycloak

    2 projects | dev.to | 6 May 2024
  • Ask HN: Modern Day Equivalent to HyperCard?

    9 projects | news.ycombinator.com | 1 May 2024
  • Inflight Magazine no. 9

    5 projects | dev.to | 1 May 2024
  • A note from our sponsor - SurveyJS
    surveyjs.io | 10 May 2024
    With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js. Learn more →

Index

What are some of the best open-source MVC Frameworks and Library projects? This list will help you:

Project Stars
1 React 222,406
2 Vue.js 207,025
3 react-native 116,112
4 Angular 94,599
5 Svelte 76,639
6 Element UI 53,973
7 Meteor JS 44,054
8 Preact 36,094
9 Backbone.js 28,090
10 Alpine.js 26,932
11 Ember.js 22,456
12 Polymer 22,041
13 GrapesJS 20,099
14 hyperapp 19,026
15 inferno 16,014
16 AdonisJs Framework 15,510
17 million 15,209
18 feathers 14,942
19 riot 14,835
20 Mithril.js 13,913
21 blockly 12,122
22 Aurelia 1 11,745
23 knockout 10,412

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com