Alternatives to Flask

Compare Flask alternatives for your business or organization using the curated list below. SourceForge ranks the best alternatives to Flask in 2024. Compare features, ratings, user reviews, pricing, and more from Flask competitors and alternatives in order to make an informed decision for your business.

  • 1
    AIOHTTP

    AIOHTTP

    AIOHTTP

    Supports both client and server side of HTTP protocol, both client and server web-sockets out-of-the-box, and avoids callback hell and web-server with middlewares and pluggable routing.
  • 2
    Sanic

    Sanic

    Sanic

    Intuitive API with smart defaults and no bloat allows you to get straight to work building your app. Build the way you want to build without letting your tooling constrain you. Built from the ground up with speed and scalability as a main concern. It is ready to power web applications big and small. Out of the box, it comes bundled with a web server ready to power your web applications. Sanic is one of the overall most popular frameworks on PyPI, and the top async enabled framework. The project is maintained and run by the community for the community.
  • 3
    CherryPy

    CherryPy

    CherryPy

    CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This results in smaller source code developed in less time. CherryPy is now more than ten years old, and it has proven to be fast and reliable. It is being used in production by many sites, from the simplest to the most demanding. In order to make the most of CherryPy, you should start with the tutorials that will lead you through the most common aspects of the framework. Once done, you will probably want to browse through the basics and advanced sections that will demonstrate how to implement certain operations. Finally, you will want to carefully read the configuration and extend sections that go in-depth regarding the powerful features provided by the framework.
  • 4
    Django

    Django

    Django

    Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of web development, so you can focus on writing your app without needing to reinvent the wheel. Django was designed to help developers take applications from concept to completion as quickly as possible. Django takes security seriously and helps developers avoid many common security mistakes. Some of the busiest sites on the web leverage Django’s ability to quickly and flexibly scale. Django includes dozens of extras you can use to handle common web development tasks. Django takes care of user authentication, content administration, site maps, RSS feeds, and many more tasks — right out of the box.
  • 5
    Jinja

    Jinja

    Jinja

    Jinja is a fast, expressive, extensible templating engine. Special placeholders in the template allow writing code similar to Python syntax. Then the template is passed data to render the final document.
    Starting Price: Free
  • 6
    Express

    Express

    OpenJS Foundation

    Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications. With a myriad of HTTP utility methods and middleware at your disposal, creating a robust API is quick and easy. Express provides a thin layer of fundamental web application features, without obscuring Node.js features that you know and love. Express has no notion of a database. This concept is left up to third-party Node modules, allowing you to interface with nearly any database. In Express, 404 responses are not the result of an error, so the error-handler middleware will not capture them. This behavior is because a 404 response simply indicates the absence of additional work to do; in other words, Express has executed all middleware functions and routes, and found that none of them responded.
    Starting Price: Free
  • 7
    Gunicorn

    Gunicorn

    Gunicorn

    Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork worker model. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resources, and fairly speedy.
  • 8
    FastAPI

    FastAPI

    FastAPI

    FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.7+ based on standard Python type hints. Fast: Very high performance, on par with NodeJS and Go (thanks to Starlette and Pydantic). One of the fastest Python frameworks available. Minimize code duplication, multiple features from each parameter declaration.
  • 9
    Giotto

    Giotto

    Giotto

    It is based on the concept of Model, View and Controllers. The framework is designed to enforce a clean style that results in code that is maintainable over a long period. Other popular web frameworks are built with a mindset of launching fast. This results in code that will deploy quickly, but falls under it’s own complexity after many iterations. An example of a controller process is Apache, or gunicorn. A manifest is given to the controller process when it is started. All incoming requests to the controller process will be routed to a program contained within the manifest. A manifest is just a collection of programs. A user makes a request to the controller process. This can be a web request, or a command line invocation, or any other action that is handled by a controller process.
  • 10
    Litestar

    Litestar

    Litestar

    Everything that's needed to build modern APIs, from data serialization and validation to websockets, ORM integration, session management, authentication and more. Litestar puts great emphasis on developer experience and performance: It's one of the fastest ASGI frameworks and developing with it is just as fast. Asynchronous at heart, but with synchronous execution not as a second class citizen: Synchronous applications run without performance penalties. Interfaces for various key/value stores that seamlessly integrate with your application and third party extensions. Response caching with minimal configuration and overhead to speed up response times. Response caching with minimal configuration and overhead to speed up response times. Session and JWT based authentication and utilities at your disposal to start building your authentication layer with ease.
  • 11
    Starlette

    Starlette

    Starlette

    Starlette includes an application class Starlette that nicely ties together all of its other functionality. A list of middleware to run for every request. A starlette application will always automatically include two middleware classes. ServerErrorMiddleware is added as the very outermost middleware, to handle any uncaught errors occurring anywhere in the entire stack. ExceptionMiddleware is added as the very innermost middleware, to deal with handled exception cases occurring in the routing or endpoints. Startup handler callables do not take any arguments and may be either standard functions or async functions. Shutdown handler callables do not take any arguments and may be either standard functions or async functions.
  • 12
    Bottle

    Bottle

    Bottle

    Bottle is a fast, simple and lightweight WSGI micro web-framework for Python. It is distributed as a single file module and has no dependencies other than the Python Standard Library. Requests to function-call mapping with support for clean and dynamic URLs. Fast and pythonic built-in template engine and support for mako, jinja2 and cheetah templates. Convenient access to form data, file uploads, cookies, headers and other HTTP-related metadata. Built-in HTTP development server and support for paste, bjoern, gae, cherrypy or any other WSGI capable HTTP server.
  • 13
    hug

    hug

    hug

    Drastically simplify API development over multiple interfaces. With hug, design and develop your API once, then expose it however your clients need to consume it. Be it locally, over HTTP, or through the command line - hug is the fastest and most modern way to create APIs on Python3. hug has been built from the ground up with performance in mind. It is built to consume resources only when necessary and is then compiled with Cython to achieve amazing performance. As a result, hug consistently benchmarks as one of the fastest Python frameworks and without question takes the crown as the fastest high-level framework for Python 3. hug makes it easy to expose multiple versions of your API. With hug you can simply specify what version or range of versions an endpoint supports and then automatically have that enforced and communicated to your API's users.
  • 14
    Nancy

    Nancy

    Nancy

    Welcome to Nancy, our main inspiration is the Sinatra framework for Ruby and, hence, Nancy was named after the daughter of Frank Sinatra. NancyFx is the name of the umbrella project that contains all the components. Nancy is a lightweight, low-ceremony, framework for building HTTP-based services on .NET and Mono. The goal of the framework is to stay out of the way as much as possible and provide a super-duper-happy path to all interactions. This means that everything in Nancy is setup to have sensible defaults and conventions, instead of making you jump through hoops and go through configuration hell just to get up and running. With Nancy you can go from zero to website in a matter of minutes. Nancy is built to run anywhere and we mean it. Right from the start, Nancy was designed to not have any dependencies on existing frameworks. Built with the .NET framework client profile, Nancy can be used pretty much wherever you want to.
    Starting Price: Free
  • 15
    Sinatra

    Sinatra

    Sinatra

    Sinatra includes a number of built-in settings that control whether certain features are enabled. Settings are application-level variables that are modified using one of the set, enable, or disable methods and are available within the request context via the settings object. Applications are free to set custom settings as well as the default, built-in settings provided by the framework. In its simplest form, the set method takes a setting name and value and creates an attribute on the application. Extensions provide helper or class methods for Sinatra applications. These methods are customarily listed and described on extensions home pages. Using an extension is usually as simple as installing a gem or library and requiring a file.
  • 16
    LoopBack

    LoopBack

    LoopBack

    A highly extensible Node.js and TypeScript framework for building APIs and microservices. A brand new LoopBack core to deliver great extensibility and flexibility written in TypeScript/ES2017. Create powerful APIs easily with a new creative experience for defining REST APIs and handling API requests/responses. A new, improved programming model with dependency injection and new concepts such as components, mixins, repositories, etc. make this the most extensible version yet. The LoopBack 4 CLI is a command-line interface that can scaffold a project or extension. The CLI provides the fastest way to get started with a LoopBack 4 project that adheres to best practices. LoopBack is a highly-extensible, open-source Node.js framework that enables you to create dynamic end-to-end REST APIs with little or no coding. Access data from major relational databases, MongoDB, SOAP, and REST APIs. Incorporate model relationships and access controls for complex APIs.
  • 17
    Falcon

    Falcon

    Falcon

    Falcon is a blazing fast, minimalist Python web API framework for building robust app backends and microservices. The framework works great with both asyncio (ASGI) and gevent/meinheld (WSGI). The Falcon web framework encourages the REST architectural style. Resource classes implement HTTP method handlers that resolve requests and perform state transitions. Falcon complements more general Python web frameworks by providing extra reliability, flexibility, and performance wherever you need it. A number of Falcon add-ons, templates, and complementary packages are available for use in your projects. We've listed several of these on the Falcon wiki as a starting point, but you may also wish to search PyPI for additional resources.
  • 18
    Spark Framework

    Spark Framework

    Spark Framework

    Spark Framework is a simple and expressive Java/Kotlin web framework DSL built for rapid development. Sparks intention is to provide an alternative for Kotlin/Java developers that want to develop their web applications as expressive as possible and with minimal boilerplate. With a clear philosophy Spark is designed not only to make you more productive, but also to make your code better under the influence of Spark’s sleek, declarative and expressive syntax. The JVM offers one of the biggest programming ecosystems in the world. It has a lot of Java web frameworks, but pure Java web development has traditionally been very cumbersome. If you love the JVM, but hate verbose code and frameworks, Spark is the web framework for you.
  • 19
    Javalin

    Javalin

    Javalin

    You never extend classes and you rarely implement interfaces. Javalin is just a few thousand lines of code on top of Jetty, and its performance is equivalent to raw Jetty code. Due to its size, it's very easy to reason about the source code. Other Java and Kotlin web frameworks usually offer one version for each language. Javalin is being made with inter-operability in mind, apps are built the same way in both Java and Kotlin. Javalin runs on top of Jetty, one of the most used and stable web servers on the JVM. You can configure the Jetty server fully, including SSL and HTTP3 and everything else that Jetty offers. Many lightweight Java and Kotlin web frameworks don't support OpenAPI, but Javalin does.
  • 20
    hapi

    hapi

    hapi

    Build powerful, scalable applications, with minimal overhead and full out-of-the-box functionality, your code, your way. Developed initially to handle Walmart’s Black Friday sales, hapi continues to be the proven choice for enterprise-grade backend needs. When you install hapi, every single line of code you get has been verified. You never have to worry about some deep dependency being poorly maintained (or handed over to someone sketchy). hapi is the only leading node framework without any external code dependencies. hapi requires the most secure settings to manage, control, and distribute code, including 2FA for all contributors. Every hapi component comes with the most secure defaults out of the box. Along with protecting server load with payload limits and request timeouts, hapi blocks error messages that could leak information or echo back exploits. The most comprehensive authorization and authentication API available in a Node framework.
    Starting Price: Free
  • 21
    Jersey

    Jersey

    Eclipse Foundation

    Developing RESTful web services that seamlessly support exposing your data in a variety of representation media types and abstracting away the low-level details of client-server communication is not an easy task without a good toolkit. In order to simplify the development of RESTful web services and their clients in Java, a standard and portable JAX-RS API has been designed. Jersey RESTful web services 3. x framework is an open-source, production-quality, framework that provides support for Jakarta RESTful web services 3.0. Jersey framework is more than the JAX-RS reference implementation. Jersey provides its own API that extends the JAX-RS toolkit with additional features. Track the JAX-RS API and provide regular releases of production quality reference implementations that ship with GlassFish. Provides APIs to extend Jersey & build a community of users and developers. Makes it easy to build RESTful Web services utilizing Java and the Java Virtual Machine.
    Starting Price: Free
  • 22
    Koa

    Koa

    Koa

    Koa is a new web framework designed by the team behind Express, which aims to be a smaller, more expressive, and more robust foundation for web applications and APIs. By leveraging async functions, Koa allows you to ditch callbacks and greatly increase error handling. Koa does not bundle any middleware within its core, and it provides an elegant suite of methods that make writing servers fast and enjoyable. A Koa application is an object containing an array of middleware functions that are composed and executed in a stack-like manner upon request. Koa is similar to many other middleware systems that you may have encountered such as Ruby's Rack, Connect, and so on - however, a key design decision was made to provide high-level "sugar" at the otherwise low-level middleware layer. This improves interoperability, and robustness, and makes writing middleware much more enjoyable.
    Starting Price: Free
  • 23
    Echo

    Echo

    Echo

    High-performance, extensible, minimalist Go web framework. Highly optimized HTTP router with zero dynamic memory allocation which smartly prioritizes routes. Build robust and scalable RESTful API, easily organized into groups. Automatically install TLS certificates from Let's Encrypt. HTTP/2 support improves speed and provides a better user experience. Many built-in middleware to use, or define your own. Middleware can be set at root, group, or route level. Data binding for HTTP request payload, including JSON, XML or form data. API to send a variety of HTTP responses, including JSON, XML, HTML, file, attachment, inline, stream, or blob. Template rendering using any template engine. Customized central HTTP error handling. Easily extendable API. Optimized HTTP router which smartly prioritizes routes. Build robust and scalable RESTful APIs. Extensible middleware framework. Define middleware at root, group, or route level Data binding for JSON, XML, and form payload.
    Starting Price: Free
  • 24
    restify

    restify

    restify

    A Node.js web service framework optimized for building semantically correct RESTful web services ready for production use at scale. restify optimizes for introspection and performance and is used in some of the largest Node.js deployments on Earth. Running at scale requires tracing problems back to their origin by separating noise from the signal. restify is built from the ground up with post-mortem debugging in mind. Staying true to the spec is one of the foremost goals of the project. You will see references to RFCs littered throughout GitHub issues and the codebase. restify is used by some of the industry's most respected companies to power some of the largest deployments of Node.js on planet Earth—the future of Node.js REST development. Setting up a server is quick and easy. Like many other Node. js-based REST frameworks, restify leverages a Sinatra-style syntax for defining routes and the function handlers that service those routes.
    Starting Price: Free
  • 25
    Tornado Web Server
    Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user. Tornado is different from most Python web frameworks. It is not based on WSGI, and it is typically run with only one thread per process. While some support of WSGI is available in the tornado.wsgi module, it is not a focus of development and most applications should be written to use Tornado’s own interfaces (such as tornado.web) directly instead of using WSGI. In general, Tornado code is not thread-safe. Tornado is integrated with the standard library asyncio module and shares the same event loop (by default since Tornado 5.0). In general, libraries designed for use with asyncio can be mixed freely with Tornado.
  • 26
    Ruby Grape

    Ruby Grape

    Ruby Grape

    An opinionated framework for creating REST-like APIs in Ruby.
  • 27
    Growler

    Growler

    Growler

    Growler is a web framework built atop asyncio, the asynchronous library described in PEP 3156 and added to the standard library in python 3.4. It takes a cue from the Connect & Express frameworks in the nodejs ecosystem, using a single application object and series of middleware to process HTTP requests. The custom chain of middleware provides an easy way to implement complex applications. The pip utility allows packages to provide optional requirements, so features may be installed only upon request. This meshes well with the minimal nature of the Growler project: don't install anything the user doesn't need. That being said, there are (will be) community packages that are blessed by the growler developers (after ensuring they work as expected and are well tested with each version of growler) that will be available as extras directly from the growler package.
  • 28
    Spring Framework
    Spring makes programming Java quicker, easier, and safer for everybody. Spring’s focus on speed, simplicity, and productivity has made it the world's most popular Java framework. Spring’s flexible libraries are trusted by developers all over the world. Spring delivers delightful experiences to millions of end-users every day—whether that’s streaming TV, online shopping, or countless other innovative solutions. Spring’s flexible and comprehensive set of extensions and third-party libraries let developers build almost any application imaginable. At its core, Spring Framework’s Inversion of Control (IoC) and Dependency Injection (DI) features provide the foundation for a wide-ranging set of features and functionality. Whether you’re building secure, reactive, cloud-based microservices for the web, or complex streaming data flows for the enterprise, Spring has the tools to help.
    Starting Price: Free
  • 29
    Slim Framework

    Slim Framework

    Slim Framework

    Slim is an ideal tool to create APIs that consume, repurpose, or publish data. Slim is also a great tool for rapid prototyping. Heck, you can even build full-featured web applications with user interfaces. More importantly, Slim is super fast and has very little code. You don’t always need a kitchen-sink solution like Symfony or Laravel. These are great tools, for sure. But they are often overkill. Instead, Slim provides only a minimal set of tools that do what you need and nothing else. First, you need a web server like Nginx or Apache. A Slim app contains routes that respond to specific HTTP requests. Each route invokes a callback and returns an HTTP response. To get started, you first instantiate and configure the Slim application. Next, you define your application routes.
  • 30
    Ktor

    Ktor

    Ktor

    Create asynchronous client and server applications. Anything from microservices to multiplatform HTTP client apps in a simple way. Open Source, free, and fun! Ktor is built from the ground up using Kotlin and Coroutines. You get to use a concise, multiplatform language, as well as the power of asynchronous programming with an intuitive imperative flow. Ktor allows you to use only what you need, and to structure your application the way you need it. In addition, you can also extend Ktor with your own plugin very easily. Brought to you by JetBrains, creators of IntelliJ IDEA, Kotlin, and more. Ktor is not only used by our customers but also internally at JetBrains. In addition, you have top-notch tooling support!
  • 31
    Fat-Free Framework

    Fat-Free Framework

    Fat-Free Framework

    Speed up your development process. F3 is lightweight, easy-to-use, and fast. Most of all, it doesn't get in your way. It has a gentle learning curve so you save money on training expenses. Whether you're a novice or an expert PHP programmer, F3 will get you up and running in no time. No unnecessary and painstaking installation procedures and no complex configuration are required. A powerful yet easy-to-use PHP micro-framework designed to help you build dynamic and robust web applications. Full-featured toolkit, super lightweight code base with just ~90kb, and easy to learn. Take advantage of the built-in features. Develop apps that really rock. F3 gives you a solid foundation, a mature code base, and a no-nonsense approach to writing web applications. Under the hood is an easy-to-use web development tool kit, high-performance URL routing, a multi-protocol cache engine, built-in code highlighting, and support for multilingual i18n applications.
    Starting Price: Free
  • 32
    Framework7

    Framework7

    Framework7

    Framework7 is a free and open-source framework to develop mobile, desktop, or web apps with a native look and feel. It is also an indispensable prototyping tool to show a working app prototype as soon as possible in case you need to. With such a stunning set of UI components that Framework7 provides right from the box, it allows to create web apps, progressive web apps (PWA), and iOS and Android apps with a native look and feel. Framework7 paired with extra tools like Electron and NW.js allows to build native desktop apps. You can use any tools you love when working with Framework7. It doesn’t force you to use anything except plain HTML, CSS, and JavaScript. Creating apps with Framework7 is easy as creating a website. And in addition to vanilla JavaScript library, Framework7 comes with Vue.js, React, and Svelte components to bring components-syntax, structured data, and data bindings with the power and simplicity of Vue.js, React, or Svelte.
    Starting Price: Free
  • 33
    Padrino

    Padrino

    Padrino

    Padrino was created to make it fun and easy to code more advanced web applications while still adhering to the spirit that makes Sinatra great! The Padrino code base has been kept simple and easy to understand, maintain and enhance. The generator for each new project creates a clean and compact directory structure keeping your code simple and well-organized. This framework can be used with ease for web development for a project of any size from your lightweight json web service to a large full-stack web application! Many people love the simplicity and expressiveness of Sinatra but quickly find themselves missing a great deal of functionality provided by other web frameworks such as Rails when building non-trivial applications. Starting from this assumption, we have developed a different approach to a web development framework.
  • 34
    Meteor

    Meteor

    Meteor

    Meteor is an open-source framework for seamlessly building and deploying Web, Mobile, and Desktop applications in Javascript. Use popular frameworks and tools right out of the box. Focus on building features instead of configuring disparate components yourself. Use the same code whether you’re developing for web, iOS, Android, or desktop for a seamless update experience for your users. Developed for over a decade and trusted by industry giants. Meteor is a mature open-source framework that allows you to build and scale efficiently so you can serve millions of users. Visibility into your app's performance. See real-time metrics so you can monitor how your application is running. Spend less time on DevOps and more time building. The most efficient way for you to host & scale your Meteor app. Browse our extensive library of open source packages, free for you to download.
  • 35
    Grails

    Grails

    Grails

    A powerful Groovy-based web application framework for the JVM built on top of Spring Boot. Convention-over-configuration, sensible defaults, opinionated APIs, and the Groovy language combine to make the Grails® framework easy to learn for Java developers. The Grails framework is built on top of Spring Boot and leverages Spring Boot's time-saving features, such as Spring-powered dependency injection. The Grails framework seamlessly and transparently integrates and interoperates with Java, the JVM, and existing Java EE containers. Apache Groovy is a language for the Java platform designed to enhance developers' productivity. It is an optionally-typed and dynamic language but with static-typing and static compilation capabilities. The Grails framework seamlessly integrates with GORM, a data access toolkit that provides a rich set of APIs for accessing relational and non-relational data. GORM also includes implementations for Hibernate (SQL), MongoDB, Cassandra, and Neo4j.
    Starting Price: Free
  • 36
    Sencha Ext JS
    Sencha Ext JS is a comprehensive JavaScript application framework for building feature-rich, cross-browser-compatible web and mobile applications. It includes a library with 140+ high-performance customizable components, a set of tools and a powerful UI Framework. Key Features Rich UI Components – Includes a variety of pre-built UI elements such as grids and trees, menus and toolbars, forms and buttons, etc. Cross-platform compatibility - Supports major desktop and mobile web browsers including IE Firefox Chrome Safari and Opera. Data Packages – Includes data components to interact with various data sources including JSON, XML and database connections. Theming and Skinning - Allow easy skinning and theming of the UI with CSS. Development Tools - Includes an extensive set of development tools including a visual designer and debugger. Large Community - Has an active and large community of developers who provide support, extensions, etc.
    Starting Price: $1,295 one-time payment
  • 37
    Swoole

    Swoole

    Swoole

    Powering the next-generation microservices and applications. Build high-performance, scalable, concurrent TCP, UDP, Unix Socket, HTTP, GRPC services with PHP and easy-to-use coroutine, fibers API. Write your next scalable async application with PHP coroutines and fibers. Compared with other async programming frameworks or software such as Nginx, Tornado, and Node.js, Swoole is a complete async solution that has built-in support for async programming via fibers/coroutines, a range of multi-threaded I/O modules (HTTP server, GRPC, process pools) and support for popular PHP clients like PDO for MySQL, Redis, and CURL. You can use sync or async, coroutine, or fiber API to write the applications or create thousands of lightweight fibers within one Linux process. Swoole enhances the efficiency of your PHP applications and brings you out of the traditional stateless model, enabling you to focus on the development of innovative products at a high scale.
    Starting Price: Free
  • 38
    jQuery Mobile

    jQuery Mobile

    OpenJS Foundation

    jQuery Mobile is an HTML5-based user interface system designed to make responsive websites and apps that are accessible on all smartphones, tablets, and desktop devices. jQuery Mobile framework takes the "write less, do more" mantra to the next level: Instead of writing unique applications for each mobile device or OS, the jQuery mobile framework allows you to design a single highly-branded responsive website or application that will work on all popular smartphone, tablet, and desktop platforms. We believe that your website or app should feel like your brand, not any particular OS. To make building highly customized themes easy, we've created ThemeRoller for mobile to make it easy to drag and drop colors and download a custom theme. For polished visuals without the bloat, we leverage CSS3 properties. We recommend using our tool to build a custom bundle that contains only the components you need.
    Starting Price: Free
  • 39
    Marionette

    Marionette

    Marionette

    Organize your app in terms of small Views. Marionette makes it easy to compose rich layouts out of small components. We've added tons of features from templateHelpers, to a declarative UI hash, that will keep you from ever wanting to go back. Share complex UI interactions across views. Behaviors are like mixins, without all of the pain associated with property collision. Decoupled communication between your application components with a powerful messaging system. Write classes with the same API as your views. Marionette Objects support features like extend, events, initialize, and more. Marionette community is home to the most welcoming and vibrant discussions in the Backbone ecosystem. Stop spending more time thinking about your framework than your app. Marionette will never get in the way of you and your code.
    Starting Price: Free
  • 40
    Spring Boot

    Spring Boot

    VMware Tanzu

    Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need minimal Spring configuration. Provide production-ready features such as metrics, health checks, and externalized configuration. Provide opinionated 'starter' dependencies to simplify your build configuration. Automatically configure Spring and 3rd party libraries whenever possible.
  • 41
    Rustless

    Rustless

    Rustless

    Rustless is a REST-like API micro-framework for Rust. It's designed to provide a simple DSL to easily develop RESTful APIs on top of the Iron web framework. It has built-in support for common conventions, including multiple formats, subdomain/prefix restriction, content negotiation, versioning, and much more. Rustless in a port of Grape library from Ruby world. Based on hyper, an HTTP library for Rust. Like Rust itself, Rustless is still in the early stages of development, so don't be surprised if APIs change and things break. If something's not working properly, file an issue or submit a pull request! Rustless is based on Iron, which is based on Hyper, which is synchronous. Hyper has a lot of limitations right now, and can't handle many simultaneous connections, especially with keep-alive. So it is highly recommended to use a light asynchronous web server such as Nginx as a reverse proxy server with Rustless.
    Starting Price: Free
  • 42
    Pop PHP Framework

    Pop PHP Framework

    Pop PHP Framework

    Pop PHP is an open source, object-oriented PHP framework with humble beginnings dating back to 2009, where it started as a small library of components. The focus of Pop is to provide a robust set of lightweight tools to assist developers with rapid application development. With a relatively small learning curve, Pop aims to help developers in getting the features they need into their applications so they can be up and running quickly. The Pop PHP Framework contains a group of core components and an additional 30+ components that serve as a toolkit for rapid application development. The framework itself has a base set of core components as well as numerous other additional components to facilitate many of the common features needed for a PHP application. The goal is so that anyone from a novice developer to an advanced programmer can install and start using the Pop PHP Framework quickly and effectively.
    Starting Price: Free
  • 43
    Webix

    Webix

    Webix

    JavaScript UI library and framework for speeding up web development. JS Framework for cross-platform web Apps development 102 UI widgets and feature-rich CSS / HTML5 JavaScript controls. Save at least 3000+ development hours by using ready-made widgets and UI controls. Develop Web UI 30% faster. We have accumulated the best design ideas. We have meticulously considered UX of each Webix component for five conceptual designs. Our support service specialists know everything about our library and can help you solve any problem. We also have an official support forum where you can discuss issues with our developers. By using Webix JS framework you receive an elegant and lightweight code based on object-oriented programming concepts. Associate your project with jQuery JavaScript library, MVC frameworks AngularJS, React, Vue.js, Backbone.js, third party UI extensions.
  • 44
    Dropwizard

    Dropwizard

    Dropwizard

    Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web services. Dropwizard pulls together stable, mature libraries from the Java ecosystem into a simple, lightweight package that lets you focus on getting things done. Dropwizard has out-of-the-box support for sophisticated configuration, application metrics, logging, operational tools, and much more, allowing you and your team to ship a production-quality web service in the shortest time possible. Dropwizard straddles the line between being a library and a framework. Its goal is to provide performant, reliable implementations of everything a production-ready web application needs. Because this functionality is extracted into a reusable library, your application remains lean and focused, reducing both time-to-market and maintenance burdens. Because you can’t be a web application without HTTP, Dropwizard uses the Jetty HTTP library to embed an incredibly tuned HTTP server directly into your project.
    Starting Price: Free
  • 45
    Inferno

    Inferno

    Inferno

    Inferno doesn't have a fully synthetic event system like React does. Inferno has a partially synthetic event system, instead opting to only delegate certain events (such as `onClick`). Inferno provides lifecycle events on functional components. This is a major win for people who prefer lightweight components rather than ES2015 classes. Inferno is able to use the React Dev Tools extensions for Chrome/Firefox/etc to provide the same level of debugging experience to the Inferno user via inferno-devtools. Inferno has a partial synthetic event system, resulting in better performance via delegation of certain events. Inferno provides lifecycle events on functional components. This is a major win for people who prefer lightweight components rather than ES2015 classes.
    Starting Price: Free
  • 46
    Quarkus

    Quarkus

    Quarkus

    Quarkus tailors your application for GraalVM and HotSpot. Amazingly fast boot time, incredibly low RSS memory (not just heap size!) offering near-instant scale up and high-density memory utilization in container orchestration platforms like Kubernetes. We use a technique we call compile time boot. Quarkus provides a cohesive, fun-to-use, full-stack framework by leveraging a growing list of over fifty best-of-breed libraries that you love and use. A cohesive platform for optimized developer joy with unified configuration and no hassle native executable generation. Zero configs, live reload in the blink of an eye, and streamlined code for the 80% common usages, flexible for the remainder 20%. The combination of Quarkus and Kubernetes provides an ideal environment for creating scalable, fast, and lightweight applications. Quarkus significantly increases developer productivity with tooling, pre-built integrations, application services, and more.
  • 47
    Horovod

    Horovod

    Horovod

    Horovod was originally developed by Uber to make distributed deep learning fast and easy to use, bringing model training time down from days and weeks to hours and minutes. With Horovod, an existing training script can be scaled up to run on hundreds of GPUs in just a few lines of Python code. Horovod can be installed on-premise or run out-of-the-box in cloud platforms, including AWS, Azure, and Databricks. Horovod can additionally run on top of Apache Spark, making it possible to unify data processing and model training into a single pipeline. Once Horovod has been configured, the same infrastructure can be used to train models with any framework, making it easy to switch between TensorFlow, PyTorch, MXNet, and future frameworks as machine learning tech stacks continue to evolve.
    Starting Price: Free
  • 48
    Phalcon

    Phalcon

    Phalcon

    A full-stack PHP framework delivered as a C-extension. Its innovative architecture makes Phalcon the fastest PHP framework ever built. Developers do not need to know C to use Phalcon. Its functionality is exposed as PHP classes and interfaces under the Phalcon namespace, ready to be used. Zephir/C extensions are loaded together with PHP one time on the web server's daemon start process. Classes and functions provided by the extension are ready to use for any application. The code is compiled and isn't interpreted because it's already compiled to a specific platform and processor. Thanks to its low-level architecture and optimizations Phalcon provides the lowest overhead for MVC-based applications. Build single and multi-module applications with ease and pleasure. Using the file structure, scheme, and patterns you already know. Writing REST servers and applications has never been easier, with no boilerplate, and simple services that fit in one file.
    Starting Price: Free
  • 49
    CodeIgniter

    CodeIgniter

    CodeIgniter

    CodeIgniter is an Application Development Framework - a toolkit - for people who build web sites using PHP. Its goal is to enable you to develop projects much faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries. CodeIgniter lets you creatively focus on your project by minimizing the amount of code needed for a given task. Where possible, CodeIgniter has been kept as flexible as possible, allowing you to work in the way you want, not being forced into working any certain way. The framework can have core parts easily extended or completely replaced to make the system work the way you need it to. In short, CodeIgniter is the malleable framework that tries to provide the tools you need while staying out of the way.
  • 50
    GraalVM

    GraalVM

    GraalVM

    Discover libraries and frameworks that work out-of-the-box with Native Image. Apply Graal, an advanced optimizing compiler, that generates faster and leaner code requiring fewer compute resources. Compile Java applications ahead of time to native binaries that start up instantly and deliver peak performance with no warmup time. Leverage the best features and libraries of popular languages in a single app with no overhead. Debug, monitor, profile, and optimize resource consumption in Java and across multiple languages. GraalVM’s high-performance JIT compiler generates optimized native machine code that runs faster, produces less garbage, and uses less CPU thanks to a battery of advanced compiler optimizations and aggressive and sophisticated inlining techniques. The end results are applications that run faster and consume fewer resources, reducing cloud and infrastructure costs.
    Starting Price: Free