├── .travis.yml ├── LICENSE └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | before_script: 5 | - gem install awesome_bot 6 | script: 7 | - awesome_bot README.md --allow-dupe --allow-redirect --allow-ssl --allow-timeout 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | 118 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UI Frameworks 2 | 3 | [![Build Status](https://api.travis-ci.org/cdleon/ui-frameworks.svg?branch=master)](https://travis-ci.org/cdleon/ui-frameworks) 4 | 5 | ## CSS 6 | 7 | - [960 Grid System](https://github.com/nathansmith/960-Grid-System) - The 960 Grid System is an effort to streamline web development workflow. [http://960.gs](http://960.gs) 8 | - [AgnosticUI](https://www.agnosticui.com/) - Accessible React component primitives that also work with Vue 3, Svelte, and Angular 9 | - [Amaze UI](https://github.com/amazeui/amazeui) - Amaze UI, a mobile-first and modular front-end framework. [http://amazeui.org/](http://amazeui.org/) 10 | - [Blueprint](https://github.com/joshuaclayton/blueprint-css) - A CSS framework that aims to cut down on your CSS development time [http://www.blueprintcss.org](http://www.blueprintcss.org) 11 | - [Bootmetro](https://github.com/aozora/bootmetro) - Simple and flexible web framework to create elegant and modern web applications 12 | with the same look & feel of Windows 8 [http://www.marcellop.com/bootmetro/](http://www.marcellop.com/bootmetro/) 13 | - [Bootsrap](https://github.com/twbs/bootstrap) - The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web. [http://getbootstrap.com](http://getbootstrap.com) 14 | - [Material Design for Bootstrap](https://github.com/FezVrasta/bootstrap-material-design) - Material design theme for Bootstrap 3 and 4. [https://fezvrasta.github.io/bootstrap-material-design/](https://fezvrasta.github.io/bootstrap-material-design/) 15 | - [Bulma](https://github.com/jgthms/bulma) - Modern CSS framework based on Flexbox. [http://bulma.io](http://bulma.io) 16 | - [Cascade](https://github.com/jslegers/cascadeframework/) Cascade Framework. [http://cascade-framework.com/](http://cascade-framework.com/) 17 | - [ConciseCSS](https://github.com/ConciseCSS/concise.css) A CSS framework that's lightweight and easy-to-use. Give up the bloat. Stop tripping over your classes. Be Concise. [http://concisecss.com/](http://concisecss.com/) 18 | - [Cutestrap](https://github.com/tylerchilds/cutestrap) - A strong, independent CSS Framework. Only 2.7KB minified & gzipped. [https://www.cutestrap.com](https://www.cutestrap.com) 19 | - [Foundation](https://github.com/zurb/foundation-sites) - The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites that work on any kind of device. [http://foundation.zurb.com](http://foundation.zurb.com) 20 | - [Grd](https://github.com/1000ch/grd) - A CSS grid framework using Flexbox. Only 321 bytes (Gzipped). [https://1000ch.github.io/grd/](https://1000ch.github.io/grd/) 21 | - [Gumby](https://github.com/GumbyFramework/Gumby) - A Flexible, Responsive CSS Framework - Powered by Sass. [http://www.gumbyframework.com/](http://www.gumbyframework.com/) 22 | - [Kube](https://github.com/imperavi/kube) - Kube is a minimalistic Web framework for professional developers and designers. [https://imperavi.com/kube/](https://imperavi.com/kube/) 23 | - [Less Framework](https://github.com/jonikorpi/Less-Framework) - An adaptive CSS grid system. [http://www.jonikorpi.com/less-framework/](http://www.jonikorpi.com/less-framework/) 24 | - [Material Design Lite](https://github.com/google/material-design-lite) - Material Design Lite (MDL) lets you add a Material Design look and feel to your static content websites. It doesn't rely on any JavaScript frameworks or libraries. [https://getmdl.io/](https://getmdl.io/) 25 | - [Materialize](https://github.com/Dogfalo/materialize) - CSS Framework based on Material Design. [http://materializecss.com](http://materializecss.com) 26 | - [Metro UI](https://github.com/olton/Metro-UI-CSS) - CSS styles for build Windows 8 Metro UI stylable interface.[http://metroui.org.ua/](http://metroui.org.ua/) 27 | - [Miligram](https://github.com/milligram/milligram) A minimalist CSS framework. [https://milligram.github.io/](https://milligram.github.io/) 28 | - [MUI](https://github.com/muicss/mui) - MUI is a lightweight CSS framework that follows Google's Material Design guidelines. [https://www.muicss.com](https://www.muicss.com) 29 | - [NES](https://github.com/nostalgic-css/NES.css) - NES-style CSS Framework. [https://nostalgic-css.github.io/NES.css/](https://nostalgic-css.github.io/NES.css/) 30 | - [Office UI Fabric](https://github.com/OfficeDev/office-ui-fabric-core) - The front-end framework for building experiences for Office 365. [https://developer.microsoft.com/en-us/fluentui](https://developer.microsoft.com/en-us/fluentui) 31 | - [Pills](https://github.com/rohitkrai03/pills) - A simple responsive CSS Grid for humans. [http://arkpod.in/pills/](http://arkpod.in/pills/) 32 | - [Primer](https://github.com/primer/primer) - The base coat of GitHub. Our internal CSS toolkit and guidelines. [https://github.com/primer/primer](https://github.com/primer/primer) 33 | - [Pure](https://github.com/yahoo/pure/) - A set of small, responsive CSS modules that you can use in every web project. [http://purecss.io/](http://purecss.io/) 34 | - [Pure CSS Components](https://github.com/LFeh/css-components) - A set of common UI Components using the power of CSS and without Javascript. [https://www.felipefialho.com/css-components/](https://www.felipefialho.com/css-components/) 35 | - [Responsive](https://github.com/ResponsiveBP/Responsive) - A powerful, accessible, developer friendly framework for building responsive websites. [http://responsivebp.com](http://responsivebp.com) 36 | - [Sakura](https://github.com/oxalorg/sakura) - A minimal css framework/theme. [https://oxal.org/projects/sakura](https://oxal.org/projects/sakura) 37 | - [Semantic UI](https://github.com/Semantic-Org/Semantic-UI) - Semantic is a UI component framework based around useful principles from natural language. [http://semantic-ui.com/](http://semantic-ui.com/) 38 | - [Skeleton](https://github.com/dhg/Skeleton) - A Dead Simple, Responsive Boilerplate for Mobile-Friendly Development. [http://getskeleton.com/](http://getskeleton.com/) 39 | - [Spectre](https://github.com/picturepan2/spectre) - A lightweight, responsive and modern CSS framework. [https://picturepan2.github.io/spectre/](https://picturepan2.github.io/spectre/) 40 | - [Topcoat](https://github.com/topcoat/topcoat) - CSS for clean and fast web apps. [http://topcoat.io](http://topcoat.io) 41 | - [Tufte-css](https://github.com/edwardtufte/tufte-css) - Style your webpage like Edward Tufte's handouts. [https://edwardtufte.github.io/tufte-css/](https://edwardtufte.github.io/tufte-css/) 42 | - [Tailwind.css](https://github.com/tailwindcss/tailwindcss) - A utility-first CSS framework for rapid UI development. [https://tailwindcss.com/](https://tailwindcss.com/) 43 | - [Typebase.css](https://github.com/devinhunt/typebase.css) - A starting point for good typography on the web. [http://devinhunt.github.io/typebase.css/](http://devinhunt.github.io/typebase.css/) 44 | - [UIKit](https://github.com/uikit/uikit) - A lightweight and modular front-end framework for developing fast and powerful web interfaces. [http://getuikit.com](http://getuikit.com) 45 | - [Unnamed](https://github.com/smakosh/unnamed-css-framework) - A simple colorful css framework [https://unnamed.smakosh.com](https://unnamed.smakosh.com) 46 | - [U.S. Web Design System](https://github.com/uswds/uswds) The U.S. Web Design System is a design system for building fast, accessible, mobile-friendly federal government websites. [https://designsystem.digital.gov](https://designsystem.digital.gov) 47 | - [Water.css](https://github.com/kognise/water.css) - A just-add-css collection of styles to make simple websites just a little nicer. [https://watercss.netlify.com/](https://watercss.netlify.com/) 48 | - [Yaml](https://github.com/yamlcss/yaml) - YAML (Yet Another Multicolumn Layout) is a modular CSS framework for truly flexible, accessible and responsive websites. It is based on Sass and has a very slim framework core that weights only ~6kB. [http://www.yaml.de](http://www.yaml.de) 49 | - [Yahoo User Interface Library](https://github.com/yui/yui3) - YUI is a free, open source JavaScript and CSS framework for building richly interactive web applications. [http://yuilibrary.com/](http://yuilibrary.com/) 50 | 51 | ## HTML 52 | 53 | * [Mavo](https://github.com/mavoweb/mavo) - Create web applications entirely by writing HTML and CSS! [https://mavo.io](https://mavo.io) 54 | 55 | ## JS 56 | 57 | * [Amp HTML](https://github.com/ampproject/amphtml) - AMP HTML is a way to build web pages for static content that render with reliable, fast performance. It is our attempt at fixing what many perceive as painfully slow page load times – especially when reading content on the mobile web. [https://www.ampproject.org/](https://www.ampproject.org/) 58 | * [Angular](https://github.com/angular/angular.js) - HTML enhanced for web apps. [https://angularjs.org/](https://angularjs.org/) 59 | * [App.js](https://github.com/kikinteractive/app) - App.js is a lightweight JavaScript UI library for creating mobile webapps that behave like native apps, sacrificing neither performance nor polish. [http://code.kik.com/app/3/index.html](http://code.kik.com/app/3/index.html) 60 | * [Aurelia](https://github.com/aurelia/framework) - The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform. [http://aurelia.io/](http://aurelia.io/) 61 | * [Backbone.js](https://github.com/jashkenas/backbone) - Backbone supplies structure to JavaScript-heavy applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing application over a RESTful JSON interface. [http://backbonejs.org/](http://backbonejs.org/) 62 | * [Bacon.js](https://github.com/baconjs/bacon.js/) - FRP (functional reactive programming) library for Javascript. [https://baconjs.github.io/](https://baconjs.github.io/) 63 | * [Brunch](https://github.com/brunch/brunch) - Fast front-end web app build tool with simple declarative config, seamless incremental compilation for rapid development, an opinionated pipeline and workflow, and core support for source maps. [http://brunch.io/](http://brunch.io/) 64 | * [Cash](https://github.com/kenwheeler/cash) - An absurdly small jQuery alternative for modern browsers. [https://github.com/kenwheeler/cash](https://github.com/kenwheeler/cash) 65 | * [Can.js](https://github.com/canjs/canjs) - CanJS is a MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy. [https://canjs.com/](https://canjs.com/) 66 | * [Choo](https://github.com/yoshuawuyts/choo) - sturdy 4kb frontend framework. [https://choo.io/](https://choo.io/) 67 | * [Composer.js](https://github.com/lyonbros/composer.js) - Composer is a library for building complex single-page applications. [http://lyonbros.github.io/composer.js/](http://lyonbros.github.io/composer.js/) 68 | * [Dojo](https://github.com/dojo) - A JavaScript toolkit that saves you time and scales with your development process. Provides everything you need to build a Web app. Language utilities, UI components, and more, all in one place, designed to work together perfectly. [https://github.com/dojo](https://github.com/dojo) 69 | * [Flapjax](https://github.com/brownplt/flapjax) - functional reactive programming for JavaScript [http://www.flapjax-lang.org/](http://www.flapjax-lang.org/) 70 | * [Flight](https://github.com/flightjs/flight) - A component-based, event-driven JavaScript framework from Twitter. [http://flightjs.github.io/](http://flightjs.github.io/) 71 | * [Fn.js](https://github.com/CrowdHailer/fn.js) - A JavaScript library built to encourage a functional programming style & strategy [http://eliperelman.com/fn.js/](http://eliperelman.com/fn.js/) 72 | * [Handlebars.js](https://github.com/wycats/handlebars.js) - Handlebars.js is an extension to the Mustache templating language created by Chris Wanstrath. Handlebars.js and Mustache are both logicless templating languages that keep the view and the code separated like we all know they should be. [http://handlebarsjs.com/](http://handlebarsjs.com/) 73 | * [Hilo](https://github.com/hiloteam/Hilo) - A Cross-end HTML5 Game development solution developed by Alibaba Group [https://hiloteam.github.io/](https://hiloteam.github.io/) 74 | * [Hyperapp](https://github.com/hyperapp/hyperapp) - 1 KB JavaScript library for building frontend applications. [https://hyperapp.glitch.me) 75 | * [Inferno](https://github.com/trueadm/inferno) - An extremely fast, React-like JavaScript library for building modern user interfaces. [http://infernojs.org/](http://infernojs.org/) 76 | * [jQuery](https://github.com/jquery/jquery) - jQuery JavaScript Library. [https://jquery.com/](https://jquery.com/) 77 | * [jQuery Mobile](https://github.com/jquery/jquery-mobile) - jQuery Mobile is a unified, HTML5-based user interface system for all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. [https://jquerymobile.com/](https://jquerymobile.com/) 78 | * [JsBlocks](https://github.com/astoilkov/jsblocks) - Better MV-ish Framework. [http://jsblocks.com/](http://jsblocks.com/) 79 | * [Knockout.js](https://github.com/knockout/knockout) - Knockout makes it easier to create rich, responsive UIs with JavaScript. [http://knockoutjs.com/](http://knockoutjs.com/) 80 | * [Lazy.js](https://github.com/dtao/lazy.js) - Lazy.js is a functional utility library for JavaScript, similar to Underscore and Lo-Dash, but with an underlying engine that supports many more use cases than those libraries, while offering comparable or superior performance in most scenarios. [http://danieltao.com/lazy.js/](http://danieltao.com/lazy.js/) 81 | * [LayerJS](https://github.com/layerJS/layerJS) - Javascript UI composition framework. [https://layerjs.org/](https://layerjs.org/) 82 | * [Lodash](https://github.com/lodash/lodash) - A JavaScript utility library delivering consistency, modularity, performance, & extras. [https://lodash.com/](https://lodash.com/) 83 | * [Marko.js](https://github.com/marko-js/marko) - A friendly (and fast!) UI library from eBay that makes building web apps fu. [https://markojs.com/](https://markojs.com/) 84 | * [Min.js](https://github.com/remy/min.js) - Super minimal selector and event library. [https://github.com/remy/min.js](https://github.com/remy/min.js) 85 | * [Mithril.js](https://github.com/MithrilJS/mithril.js) - A JavaScript Framework for Building Brilliant Applications [https://mithril.js.org](https://mithril.js.org) 86 | * [Moon](https://github.com/kbrsh/moon) - A minimal, blazing fast UI library. [http://moonjs.ga/](http://moonjs.ga/) 87 | * [MooTools](http://mootools.net/) - MooTools is a collection of JavaScript utilities designed for the intermediate to advanced JavaScript developer. It allows you to write powerful and flexible code with its elegant, well documented, and coherent APIs. [http://mootools.net/](http://mootools.net/) 88 | * [Mustache.js](https://github.com/janl/mustache.js/) - Minimal templating with {{mustaches}} in JavaScript. [http://mustache.github.io/](http://mustache.github.io/) 89 | * [Nerv](https://github.com/NervJS/nerv) - A blazing fast React alternative, compatible with IE8 and React 16. [https://nerv.aotu.io/](https://nerv.aotu.io/) 90 | * [Omi](https://github.com/Tencent/omi) - Next generation web framework in 4kb JavaScript (Web Components + JSX + Proxy + Store + Path Updating). [http://omijs.org](http://omijs.org) 91 | * [Polymer](https://github.com/Polymer/polymer) - Polymer lets you build encapsulated, re-usable elements that work just like HTML elements, to use in building web applications. [https://www.polymer-project.org/1.0/](https://www.polymer-project.org/1.0/) 92 | * [Preact](https://github.com/developit/preact) - Fast 3kb React alternative with the same ES6 API. Components & Virtual DOM. [https://preactjs.com](https://preactjs.com) 93 | * [Prototype](https://github.com/sstephenson/prototype) - Prototype is a JavaScript framework that aims to ease development of dynamic web applications. It offers a familiar class-style OO framework, extensive Ajax support, higher-order programming constructs, and easy DOM manipulation. [http://prototypejs.org/](http://prototypejs.org/) 94 | * [Radioactive](https://github.com/radioactive/radioactive) - Radioactive is a Native FRP ( Functional Reactive Programming ) environment for Javascript. [https://github.com/radioactive/radioactive](https://github.com/radioactive/radioactive) 95 | * [React](https://github.com/facebook/react) - React is a JavaScript library for building user interfaces. [https://facebook.github.io/react/](https://facebook.github.io/react/) 96 | * [Serverless](https://github.com/serverless/serverless) - The Server-less Application Framework. Uses bleeding-edge AWS services to redefine how to build massively scalable (and cheap) apps! [https://serverless.com/](https://serverless.com/) 97 | * [Skel](https://github.com/ajlkn/skel) - A lightweight responsive framework for the www. [https://github.com/ajlkn/skel](https://github.com/ajlkn/skel) 98 | * [Sprint](https://github.com/bendc/sprint) - A tiny, lightning fast jQuery-like library for modern browsers. [https://github.com/bendc/sprint](https://github.com/bendc/sprint) 99 | * [Slate](https://github.com/ianstormtaylor/slate) - A completely customizable framework for building rich text editors. [http://slatejs.org](http://slatejs.org) 100 | * [Riot.js](https://github.com/riot/riot) - A React-like, user interface library. [http://riotjs.com/](http://riotjs.com/) 101 | * [t3js](https://github.com/box/t3js/) - T3 is a client-side JavaScript framework for building large-scale web applications. [http://t3js.org/](http://t3js.org/) 102 | * [Trine](https://github.com/jussi-kalliokoski/trine) - Trine is a utility library geared at tapping the full potential of functional programming in JS, in the vein of lodash, underscore and Ramda. [https://github.com/jussi-kalliokoski/trine](https://github.com/jussi-kalliokoski/trine) 103 | * [Two.js](https://github.com/jonobr1/two.js) - A two-dimensional drawing api meant for modern browsers. It is renderer agnostic enabling the same api to render in multiple contexts: webgl, canvas2d, and svg. [http://jonobr1.github.io/two.js/](http://jonobr1.github.io/two.js/) 104 | * [Vue.js](https://github.com/vuejs/vue) - Simple yet powerful library for building modern web interfaces. [http://vuejs.org/](http://vuejs.org/) 105 | * [Way.js](https://github.com/gwendall/way.js) - Simple, lightweight, persistent two-way databinding. [http://gwendall.github.io/way/](http://gwendall.github.io/way/) 106 | * [Zepto.js](https://github.com/madrobby/zepto) - Zepto.js is a minimalist JavaScript library for modern browsers, with a jQuery-compatible API. [http://zeptojs.com/](http://zeptojs.com/) 107 | 108 | ## React 109 | 110 | * [Chakra UI](https://github.com/chakra-ui/chakra-ui) - ⚡️ Simple, Modular & Accessible UI Components for your React Applications. [https://chakra-ui.com/](https://chakra-ui.com/) 111 | * [CSS Blocks](https://github.com/linkedin/css-blocks) - High performance, maintainable stylesheets. [http://css-blocks.com/](http://css-blocks.com/) 112 | * [Draft.js](https://github.com/facebook/draft-js) - A React framework for building text editors. [https://facebook.github.io/draft-js/](https://facebook.github.io/draft-js/) 113 | * [Elemental UI](https://github.com/elementalui/elemental) - A UI Toolkit for React.js Websites and Apps. [http://elemental-ui.com/](http://elemental-ui.com/) 114 | * [Essential](http://pheuter.github.io/essential-react/) - A minimal skeleton for building testable React apps using ES6. [https://github.com/pheuter/essential-react](https://github.com/pheuter/essential-react) 115 | * [Evergreen](https://github.com/segmentio/evergreen) - Evergreen React UI Framework by Segment [https://evergreen.surge.sh/](https://evergreen.surge.sh/) 116 | * [Flux](https://github.com/facebook/flux) - An application architecture for React utilizing a unidirectional data flow. [http://facebook.github.io/flux/](http://facebook.github.io/flux/) 117 | * [Grommet](https://github.com/grommet/grommet) - A react-based framework that provides accessibility, modularity, responsiveness, and theming in a tidy package [https://grommet.io](https://grommet.io) 118 | * [Ink](https://github.com/vadimdemedes/ink) - React for interactive command-line apps. 119 | * [Maple.js](https://github.com/Wildhoney/Maple.js) - Maple.js is a React webcomponents based framework mixing ES6 with Custom Elements, HTML Imports and Shadow DOM. It has in-built support for SASS and JSX, including a Gulp task for vulcanizing your project. [http://maple-app.herokuapp.com/](http://maple-app.herokuapp.com/) 120 | - [Material UI](https://github.com/callemall/material-ui) - React Components that Implement Google's Material Design. [http://www.material-ui.com](http://www.material-ui.com) 121 | * [Polaris](https://polaris.shopify.com/) - Our design system helps us work together to build a great experience for all of Shopify’s merchants. 122 | * [React95](https://github.com/arturbien/React95) - Refreshed Windows 95 style UI components for your React app [https://react95.io/](https://react95.io/) 123 | * [React Toolbox](https://github.com/react-toolbox/react-toolbox) - A set of React components implementing Google's Material Design specification with the power of CSS Modules. 124 | * [React-MDL](https://github.com/react-mdl/react-mdl) - React Components for Material Design Lite. [https://tleunen.github.io/react-mdl](https://tleunen.github.io/react-mdl) 125 | * [React Static](https://github.com/nozzle/react-static) - A progressive static-site framework for React. [https://medium.com/@tannerlinsley/%EF%B8%8F-introducing-react-static-a-progressive-static-site-framework-for-react-3470d2a51ebc](https://medium.com/@tannerlinsley/%EF%B8%8F-introducing-react-static-a-progressive-static-site-framework-for-react-3470d2a51ebc) 126 | * [React Transform Boilerplate](https://github.com/gaearon/react-transform-boilerplate) - A new Webpack boilerplate with hot reloading React components, and error handling on module and component level. 127 | * [ReactXP](https://github.com/Microsoft/reactxp) Library for cross-platform app development. [https://microsoft.github.io/reactxp](https://microsoft.github.io/reactxp/) 128 | * [Reapp](https://github.com/reapp/reapp) - Reapp - next gen hybrid apps. [https://github.com/reapp/reapp](https://github.com/reapp/reapp) 129 | * [Relay](https://github.com/facebook/relay) - Relay is a JavaScript framework for building data-driven React applications. [https://facebook.github.io/relay/](https://facebook.github.io/relay/) 130 | * [Rebass](https://github.com/rebassjs/rebass) - React primitive UI components built with styled-system. [https://rebassjs.org](https://rebassjs.org) 131 | * [Ring UI](https://github.com/JetBrains/ring-ui) - A collection of JetBrains Web UI components. [https://jetbrains.org/ring-ui](https://jetbrains.org/ring-ui) 132 | * [Uiw](https://github.com/uiw-react/uiw) - A high quality UI Toolkit, A Component Library for React 16+. [https://uiwjs.github.io](https://uiwjs.github.io) 133 | * [wired-elements](https://github.com/wiredjs/wired-elements) - Collection of elements that appear hand drawn. Great for wireframes. [https://wiredjs.com](https://wiredjs.com) 134 | * [Yoshino](https://github.com/Yoshino-UI/Yoshino) - A themable React component library!Flexible Lightweight PC UI Components built on React! Anyone can generate easily all kinds of themes by it! [https://yoshino-ui.github.io](https://yoshino-ui.github.io) 135 | 136 | ## Vue 137 | 138 | - [at-ui](https://github.com/at-ui/at-ui) - A fresh and flat UI-Kit specially for desktop application, made with ♥ by Vue.js 2.0. [https://at.aotu.io](https://at.aotu.io) 139 | - [bootstrap-vue](https://github.com/bootstrap-vue/bootstrap-vue) - Implementation of [bootstrap-4](https://getbootstrap.com/) grid and components for Vue.js 2. [https://bootstrap-vue.js.org/](https://bootstrap-vue.js.org/) 140 | - [buefy](https://github.com/buefy/buefy) - Components based on Bulma framework. [https://buefy.org/](https://buefy.org/) 141 | - [cube-ui](https://github.com/didi/cube-ui) - A fantastic mobile ui lib implement by Vue. [https://didi.github.io/cube-ui/](https://didi.github.io/cube-ui/) 142 | - [Element](https://github.com/ElemeFE/element) - A Vue.js 2.0 UI Toolkit for Web [https://element.eleme.io/](https://element.eleme.io/) 143 | - [element-ui](https://github.com/ElemeFE/element) - A Vue.js 2.0 UI Toolkit for Web. [http://element.eleme.io/](http://element.eleme.io/) 144 | - [fish-ui](https://github.com/myliang/fish-ui) - A Vue.js 2.0 UI Toolkit for Web. [https://myliang.github.io/fish-ui](https://myliang.github.io/fish-ui) 145 | - [Framework7](https://github.com/framework7io/framework7/) - Full featured HTML framework for building iOS & Android apps [http://framework7.io](http://framework7.io) 146 | - [iview-ui](https://github.com/iview/iview) - A Vue.js 2.0 UI Framework for web. [https://www.iviewui.com](https://www.iviewui.com) 147 | - [Keen-UI](https://github.com/JosephusPaye/Keen-UI) - A lightweight Vue.js UI library with a simple API, inspired by Google's Material Design. [https://josephuspaye.github.io/Keen-UI/](https://josephuspaye.github.io/Keen-UI/) 148 | - [material-components-vue](https://github.com/matsp/material-components-vue) - wrapper around [material-components-web](https://github.com/material-components/material-components-web) for Vue.js. [https://matsp.github.io/material-components-vue/](https://matsp.github.io/material-components-vue/) 149 | - [mint-ui](https://github.com/ElemeFE/mint-ui) - Mobile UI elements for Vue.js. [https://mint-ui.github.io](https://mint-ui.github.io) 150 | - [muse-ui](https://github.com/museui/muse-ui) - Material Design UI library for Vuejs 2.0. [https://museui.github.io](https://museui.github.io) 151 | - [OnsenUI](https://github.com/OnsenUI/OnsenUI) - Mobile app development framework and SDK using HTML5 and JavaScript. Create beautiful and performant cross-platform mobile apps. Based on Web Components, and provides bindings for Angular 1, 2, React and Vue.js. [https://onsen.io/](https://onsen.io/) 152 | - [PrimeVue](https://github.com/primefaces/primevue) - A Vue.js 2.0 UI Component library for Web. [https://github.com/primefaces/primevue](https://github.com/primefaces/primevue) 153 | - [Quasar Framework](https://github.com/quasarframework/quasar) - Quasar Framework. Build responsive websites, hybrid mobile Apps (that look native on Android and iOS) and Electron apps using same code, with VueJs 2. [http://quasar-framework.org/](http://quasar-framework.org/) 154 | - [Semantic UI Vue](https://github.com/Semantic-UI-Vue/Semantic-UI-Vue) - Semantic UI integration for Vue [https://semantic-ui-vue.github.io](https://semantic-ui-vue.github.io) 155 | - [v-semantic](https://github.com/eddow/v-semantic) - Implementation of [semantic-ui](https://semantic-ui.com/) for Vue. [https://semantic-ui.com/](https://semantic-ui.com/) 156 | - [vue-blu](https://github.com/chenz24/vue-blu) - UI Component Library Base on Vue.js(2.x) and Bulma. [https://chenz24.github.io/vue-blu](https://chenz24.github.io/vue-blu) 157 | - [vue-bulma-components](https://github.com/vouill/vue-bulma-components) - Easily use bulma class syntax with vue components. [https://codesandbox.io/s/wk2w3z0zk5](https://codesandbox.io/s/wk2w3z0zk5) 158 | - [vue-material](https://github.com/vuematerial/vue-material) - Material design for Vue.js. [https://vuematerial.io/](https://vuematerial.io/) 159 | - [vue-strap](https://github.com/yuche/vue-strap) - Bootstrap components built with Vue.js [http://yuche.github.io/vue-strap/]](http://yuche.github.io/vue-strap/) 160 | - [vuikit](https://github.com/vuikit/vuikit) - A responsive Vue UI library for web site interfaces [https://vuikit.js.org](https://vuikit.js.org) 161 | - [vuesax](https://github.com/lusaxweb/vuesax) - Frontend vue Components for Vue.js. [https://lusaxweb.github.io/vuesax/](https://lusaxweb.github.io/vuesax/) 162 | - [vuetify](https://github.com/vuetifyjs/vuetify) - Material Component Framework for Vue.js 2 [https://vuetifyjs.com](https://vuetifyjs.com) 163 | - [Zircle UI](https://github.com/zircleui/zircleUI) - A lightweight front-end library for developing zoomable user interfaces. [https://zircleui.github.io/zircleUI/](https://zircleui.github.io/zircleUI/) 164 | 165 | 166 | --------------------------------------------------------------------------------