2026-04-02 15:21:15 +02:00
2014-07-25 23:55:06 +08:00
2026-04-02 15:21:15 +02:00

Awesome JavaScript Awesome

A collection of awesome browser-side JavaScript libraries, resources and shiny things.

Contents

Package Managers

Host the JavaScript libraries and provide tools for fetching and packaging them.

Name Repository Description Stars Last Commit
npm npm/cli the package manager for JavaScript. Stars Last Commit
Bower bower/bower A package manager for the web. Stars Last Commit
jspm jspm/jspm-cli Import Map Package Manager. Stars Last Commit
yarn yarnpkg/berry Fast, reliable, and secure dependency management. Stars Last Commit
pnpm pnpm/pnpm Fast, disk space efficient package manager. Stars Last Commit
bun oven-sh/bun Incredibly fast JavaScript runtime, bundler, test runner, and package manager all in one Stars Last Commit

Component Management

Name Repository Description Stars Last Commit
Bit teambit/bit AI-powered development workspaces with reusable components, architectural clarity and zero overhead. Stars Last Commit

Loaders

Module or loading system for JavaScript.

Name Repository Description Stars Last Commit
RequireJS requirejs/requirejs A file and module loader for JavaScript. Stars Last Commit
browserify browserify/browserify browser-side require() the node.js way. Stars Last Commit
SystemJS systemjs/systemjs Dynamic ES module loader. Stars Last Commit

Transpilers

Software that converts the modern JavaScript syntax into the older JavaScript syntax.

Name Repository Description Stars Last Commit
SWC swc-project/swc Rust-based platform for the Web. Stars Last Commit

Bundlers

Name Repository Description Stars Last Commit
webpack webpack/webpack A bundler for javascript and friends. Stars Last Commit
Rollup rollup/rollup Next-generation ES module bundler. Stars Last Commit
Parcel parcel-bundler/parcel The zero configuration build tool for the web. Stars Last Commit
Microbundle developit/microbundle Zero-configuration bundler for tiny modules. Stars Last Commit
bundlejs okikio/bundlejs An online tool to quickly bundle & minify your projects, while viewing the compressed gzip/brotli bundle size, all running locally on your browser. Stars Last Commit
Vite vitejs/vite Next generation frontend tooling. It's fast! Stars Last Commit

Minimizers

Name Repository Description Stars Last Commit
Terser terser/terser JavaScript parser, mangler and compressor toolkit for ES6+. Stars Last Commit
UglifyJS Uglify JavaScript parser / mangler / compressor / beautifier toolkit. Stars Last Commit

Type Checkers

Name Repository Description Stars Last Commit
TypeScript - A typed superset of JavaScript that compiles to plain JavaScript.
Flow.js - A static type checker for JavaScript from Facebook.
Hegel - A static type checker for JavaScript with a bias on type inference an strong type system.
TypL getify/TypL the JavaScript Type Linter with a bias on type inference. Stars Last Commit
Hindley Milner Definitions xodio/hm-def runtime type checking for JavaScript functions using Haskell-alike Hindley Milner type signatures. Stars Last Commit
Zod colinhacks/zod TypeScript-first schema validation with built-in static type inference. Stars Last Commit

Testing Frameworks

Frameworks

Name Repository Description Stars Last Commit
mocha mochajs/mocha Simple, flexible, fun JavaScript test framework for node.js & the browser. Stars Last Commit
jasmine jasmine/jasmine DOM-less simple JavaScript testing framework. Stars Last Commit
qunit jquery/qunit An easy-to-use JavaScript Unit Testing framework. Stars Last Commit
jest facebook/jest Painless JavaScript Unit Testing. Stars Last Commit
prova azer/prova Node & Browser test runner based on Tape and Browserify Stars Last Commit
DalekJS dalekjs/dalek Automated cross browser functional testing with JavaScript Stars Last Commit
Protractor angular/protractor Protractor is an end-to-end test framework for AngularJS applications. Stars Last Commit
tape substack/tape Tap-producing test harness for node and browsers. Stars Last Commit
TestCafe DevExpress/testcafe Automated browser testing for the modern web development stack. Stars Last Commit
ava avajs/ava 🚀 Futuristic JavaScript test runner Stars Last Commit
Cypress - Complete end-to-end testing framework for anything that runs in a browser and beyond.
WebdriverI/O - Next-gen browser and mobile automation test framework for Node.js

Assertion

Name Repository Description Stars Last Commit
chai chaijs/chai BDD / TDD assertion framework for node.js and the browser that can be paired with any testing framework. Stars Last Commit
Enzyme - Enzyme is a JavaScript Testing utility for React that makes it easier to assert, manipulate, and traverse your React Components' output.
react testing library kentcdodds/react-testing-library Simple and complete React DOM testing utilities that encourage good testing practices. Stars Last Commit
Sinon.JS sinonjs/sinon Test spies, stubs, and mocks for JavaScript. Stars Last Commit
expect.js Automattic/expect.js Minimalistic BDD-style assertions for Node.JS and the browser. Stars Last Commit
proxyquire thlorenz/proxyquire Stub nodejs's require. Stars Last Commit
Supertest visionmedia/supertest A popular HTTP assertion library for testing REST APIs, often used with other testing frameworks like Mocha or Jest Stars Last Commit

Coverage

Name Repository Description Stars Last Commit
istanbul gotwarlost/istanbul Yet another JS code coverage tool. Stars Last Commit
blanket alex-seville/blanket A simple code coverage library for JavaScript. Designed to be easy to install and use, for both browser and nodejs. Stars Last Commit
JSCover tntim96/JSCover JSCover is a tool that measures code coverage for JavaScript programs. Stars Last Commit

Runner

Name Repository Description Stars Last Commit
phantomjs ariya/phantomjs Scriptable Headless WebKit. Stars Last Commit
slimerjs laurentj/slimerjs A PhantomJS-like tool running Gecko. Stars Last Commit
casperjs casperjs/casperjs Navigation scripting & testing utility for PhantomJS and SlimerJS. Stars Last Commit
zombie assaf/zombie Insanely fast, full-stack, headless browser testing using node.js. Stars Last Commit
totoro totorojs/totoro A simple and stable cross-browser testing tool. Stars Last Commit
karma karma-runner/karma Spectacular Test Runner for JavaScript. Stars Last Commit
nightwatch nightwatchjs/nightwatch UI automated testing framework based on node.js and selenium webdriver. Stars Last Commit
intern theintern/intern A next-generation code testing stack for JavaScript. Stars Last Commit
puppeteer GoogleChrome/puppeteer Headless Chrome Node.js API by official Google Chrome team. Stars Last Commit
webdriverio webdriverio/webdriverio Next-gen WebDriver test automation framework for Node.js. Stars Last Commit
taiko getgauge/taiko A Node.js library with a simple API to automate Chromium based browsers. Stars Last Commit
Playwright microsoft/playwright Node.js library to automate Chromium, Firefox and WebKit with a single API. Stars Last Commit

QA Tools

Name Repository Description Stars Last Commit
prettier prettier/prettier Prettier is an opinionated code formatter. Stars Last Commit
JSHint jshint/jshint JSHint is a tool that helps to detect errors and potential problems in your JavaScript code. Stars Last Commit
jscs jscs-dev/node-jscs JavaScript Code Style checker. Stars Last Commit
jsfmt rdio/jsfmt For formatting, searching, and rewriting JavaScript. Stars Last Commit
jsinspect danielstjules/jsinspect Detect copy-pasted and structurally similar code. Stars Last Commit
buddy.js danielstjules/buddy.js Magic number detection for JavaScript. Stars Last Commit
ESLint eslint/eslint A fully pluggable tool for identifying and reporting on patterns in JavaScript. Stars Last Commit
JSLint douglascrockford/JSLint High-standards, strict & opinionated code quality tool, aiming to keep only good parts of the language. Stars Last Commit
JavaScript Standard Style feross/standard Opinionated, no-configuration style guide, style checker, and formatter Stars Last Commit
Pre-evaluate code at buildtime kentcdodds/preval.macro Pre-evaluate your front end javascript code at build-time Stars Last Commit
JS-Beautifier beautify-web/js-beautify Npm cli and library to format JS code. Stars Last Commit
husky typicode/husky Prevents bad git commit, git push and more. Stars Last Commit

MVC Frameworks and Libraries

Name Repository Description Stars Last Commit
angular.js angular/angular.js HTML enhanced for web apps. (deprecated) Stars Last Commit
angular angular/angular Angular is a development platform for building mobile and desktop web applications using Typescript/JavaScript and other languages. Stars Last Commit
aurelia - A JavaScript client framework for mobile, desktop and web.
backbone jashkenas/backbone Give your JS App some Backbone with Models, Views, Collections, and Events. Stars Last Commit
ember.js emberjs/ember.js A JavaScript framework for creating ambitious web applications. Stars Last Commit
meteor meteor/meteor An ultra-simple, database-everywhere, data-on-the-wire, pure-javascript web framework. Stars Last Commit
ractive ractivejs/ractive Next-generation DOM manipulation. Stars Last Commit
vue vuejs/vue Intuitive, fast & composable MVVM for building interactive interfaces. Stars Last Commit
svelte sveltejs/svelte Svelte is a new way to build web applications. It's a compiler that takes your declarative components and converts them into efficient JavaScript that surgically updates the DOM. Stars Last Commit
knockout knockout/knockout Knockout makes it easier to create rich, responsive UIs with JavaScript. Stars Last Commit
spine spine/spine Lightweight MVC library for building JavaScript applications. Stars Last Commit
espresso.js techlayer/espresso.js A minimal JavaScript library for crafting user interfaces. Stars Last Commit
canjs canjs/canjs Can do JS, better, faster, easier. Stars Last Commit
react - A library for building user interfaces. It's declarative, efficient, and extremely flexible. Works with a Virtual DOM.
hyperapp hyperapp/hyperapp 1kb JavaScript library for building frontend applications. Stars Last Commit
preact developit/preact Fast 3kb React alternative with the same ES6 API. Components & Virtual DOM. Stars Last Commit
nativescript NativeScript/NativeScript Build truly native cross-platform iOS and Android apps with JavaScript. Stars Last Commit
react-native facebook/react-native A framework for building native apps with React. Stars Last Commit
riot riot/riot React-like library, but with very small size. Stars Last Commit
thorax walmartlabs/thorax Strengthening your Backbone. Stars Last Commit
chaplin chaplinjs/chaplin An architecture for JavaScript applications using the Backbone.js library. Stars Last Commit
marionette marionettejs/backbone.marionette A composite application library for Backbone.js that aims to simplify the construction of large scale JavaScript applications. Stars Last Commit
ripple ripplejs/ripple A tiny foundation for building reactive views. Stars Last Commit
rivets mikeric/rivets Lightweight and powerful data binding + templating solution. Stars Last Commit
derby derbyjs/derby MVC framework making it easy to write realtime, collaborative applications that run in both Node.js and browsers. Stars Last Commit
derby-awesome russll/awesome-derby A collection of awesome derby components Stars Last Commit
way.js gwendall/way.js Simple, lightweight, persistent two-way databinding. Stars Last Commit
mithril.js lhorie/mithril.js Mithril is a client-side MVC framework (Light-weight, Robust, Fast). Stars Last Commit
jsblocks astoilkov/jsblocks jsblocks is better MV-ish framework. Stars Last Commit
feathers feathersjs/feathers A minimalist real-time JavaScript framework for tomorrow's apps. Stars Last Commit
Keo Wildhoney/Keo Functional stateless React components with Shadow DOM support. Stars Last Commit
atvjs emadalam/atvjs Blazing fast Apple TV application development using pure JavaScript. Stars Last Commit
Alpine.js alpinejs/alpine offers you the reactive and declarative nature of big frameworks like Vue or React at a much lower cost. Stars Last Commit
inferno infernojs/inferno 🔥 An extremely fast, React-like JavaScript library for building modern user interfaces. Stars Last Commit
FoalTS - Elegant and all-inclusive Node.JS framework for building web applications (TypeScript).
Lucia aidenybai/lucia 3kb library for tiny web apps. Stars Last Commit
Adonis adonisjs/core The Node.js Framework highly focused on developer ergonomics, stability and confidence. Stars Last Commit
GrapesJS artf/grapesjs Free and Open source Web Builder Framework. Next generation tool for building templates without coding. Stars Last Commit
Rete.js retejs/rete A modular framework for visual programming allows to create node based editor in browser. Stars Last Commit
litegraph.js jagenjo/litegraph.js A graph node engine and editor similar to PD or UDK Blueprints, comes with its own editor in HTML5 Canvas2D. Stars Last Commit
Drawflow jerosoler/Drawflow This allow you to create data flows easily and quickly. Stars Last Commit
Blockly google/blockly A library that adds a visual code editor to web and mobile apps by Google. Stars Last Commit
Million aidenybai/million <1kb compiler-focused virtual DOM. It's fast! Stars Last Commit
Whatsup whatsup/whatsup A frontend framework for chillout-mode development 🥤. JSX components on generators, fast mobx-like state management and exclusive cssx style system. Stars Last Commit
Remult remult/remult A CRUD framework for full-stack TypeScript. Stars Last Commit

Node-Powered CMS Frameworks

Name Repository Description Stars Last Commit
KeystoneJS keystonejs/keystone powerful CMS and web app framework. Stars Last Commit
Reaction Commerce reactioncommerce/reaction reactive CMS, real-time architecture and design. Stars Last Commit
Ghost tryghost/Ghost simple, powerful publishing platform. Stars Last Commit
Apostrophe punkave/apostrophe CMS with content editing and essential services. Stars Last Commit
We.js wejs/we framework for real time apps, sites or blogs. Stars Last Commit
Hatch.js inventures/hatchjs CMS platform with social features. Stars Last Commit
TaracotJS xtremespb/taracotjs-generator fast and minimalist CMS based on Node.js. Stars Last Commit
Nodizecms nodize/nodizecms CMS for CoffeeScript lovers. Stars Last Commit
Cody jcoppieters/cody CMS with WSYWYG editor. Stars Last Commit
PencilBlue pencilblue/pencilblue CMS and blogging platform. Stars Last Commit
Strapi strapi/strapi Open source Node.js Headless CMS to easily build customisable APIs. Stars Last Commit
Factor fiction-com/factor The Javascript CMS Stars Last Commit

Templating Engines

Templating engines allow you to perform string interpolation.

Name Repository Description Stars Last Commit
mustache.js janl/mustache.js Minimal templating with {{mustaches}} in JavaScript. Stars Last Commit
handlebars.js handlebars-lang/handlebars.js An extension to the Mustache templating language. Stars Last Commit
nunjucks - A rich and powerful templating language for JavaScript from Mozilla.
hogan.js twitter/hogan.js A compiler for the Mustache templating language. Stars Last Commit
doT olado/doT The fastest + concise JavaScript template engine for nodejs and browsers. Stars Last Commit
dustjs linkedin/dustjs Asynchronous templates for the browser and node.js. Stars Last Commit
eco sstephenson/eco Embedded CoffeeScript templates. Stars Last Commit
JavaScript-Templates blueimp/JavaScript-Templates < 1KB lightweight, fast & powerful JavaScript templating engine with zero dependencies. Stars Last Commit
t.js jasonmoo/t.js A tiny JavaScript templating framework in ~400 bytes gzipped. Stars Last Commit
Pug pugjs/pug Robust, elegant, feature rich template engine for nodejs. (formerly known as Jade) Stars Last Commit
EJS mde/ejs Effective JavaScript templating. Stars Last Commit
xtemplate xtemplate/xtemplate eXtensible Template Engine lib for node and the browser Stars Last Commit
marko marko-js/marko A fast, lightweight, HTML-based templating engine for Node.js and the browser with async, streaming, custom tags and CommonJS modules as compiled output. Stars Last Commit
swig paularmstrong/swig (Archived) A simple, powerful, and extendable Node.js and browser-based JavaScript template engine. Stars Last Commit
hmpl - Server-oriented customizable templating for JavaScript.

Game Engines

Name Repository Description Stars Last Commit
A-Frame - Make WebVR.
Cocos - Open Source Cross-Platform Game Development Framework.
Impact - Impact - HTML5 Canvas & JavaScript Game Engine.
GDevelop - Free and Easy Game-Making App.
Kaboom.js - A game programming library that helps you make games fast and fun.
Matter.js - A 2D rigid body JavaScript physics engine.
melonJS - Open source HTML5 game engine that empowers developers and designers to focus on content.
Phaser - Phaser - A fast, fun and free open source HTML5 game framework.
PixiJS - The HTML5 Creation Engine.
PlayCanvas - PlayCanvas WebGL Game Engine.

Articles and Posts

Name Repository Description Stars Last Commit
The JavaScript that you should know - Article about concepts of JavaScript Functional.
Multi-threading using web-workers - Web Workers: Adding Multi-threading to JavaScript
this keyword in JavaScript - Breaking down the 'this' keyword in JavaScript

Data Visualization

Data visualization tools for the web.

Name Repository Description Stars Last Commit
d3 d3/d3 A JavaScript visualization library for HTML and SVG. Stars Last Commit
metrics-graphics mozilla/metrics-graphics A library optimized for concise, principled data graphics and layouts. Stars Last Commit
three.js mrdoob/three.js JavaScript 3D library. Stars Last Commit
Chart.js chartjs/Chart.js Simple HTML5 Charts using the <canvas> tag. Stars Last Commit
paper.js paperjs/paper.js The Swiss Army Knife of Vector Graphics Scripting Scriptographer ported to JavaScript and the browser, using HTML5 Canvas. Stars Last Commit
fabric.js kangax/fabric.js JavaScript Canvas Library, SVG-to-Canvas (& canvas-to-SVG) Parser. Stars Last Commit
peity benpickles/peity Progressive bar, line and pie charts. Stars Last Commit
raphael DmitryBaranovskiy/raphael JavaScript Vector Library. Stars Last Commit
echarts apache/echarts Enterprise Charts. Stars Last Commit
visjs - Multiple Libraries for dynamic, browser-based data visualization.
two.js jonobr1/two.js A renderer agnostic two-dimensional drawing api for the web. Stars Last Commit
g.raphael DmitryBaranovskiy/g.raphael Charts for Raphaël. Stars Last Commit
sigma.js jacomyal/sigma.js A JavaScript library dedicated to graph drawing. Stars Last Commit
arbor samizdatco/arbor A graph visualization library using web workers and jQuery. Stars Last Commit
cubism square/cubism A D3 plugin for visualizing time series. Stars Last Commit
dc.js dc-js/dc.js Multi-Dimensional charting built to work natively with crossfilter rendered with d3.js Stars Last Commit
vega trifacta/vega A visualization grammar. Stars Last Commit
envisionjs HumbleSoftware/envisionjs Dynamic HTML5 visualization. Stars Last Commit
rickshaw shutterstock/rickshaw JavaScript toolkit for creating interactive real-time graphs. Stars Last Commit
flot flot/flot Attractive JavaScript charts for jQuery. Stars Last Commit
morris.js morrisjs/morris.js Pretty time-series line graphs. Stars Last Commit
nvd3 novus/nvd3 Build re-usable charts and chart components for d3.js. Stars Last Commit
svg.js wout/svg.js A lightweight library for manipulating and animating SVG. Stars Last Commit
heatmap.js pa7/heatmap.js JavaScript Library for HTML5 canvas based heatmaps. Stars Last Commit
jquery.sparkline gwatts/jquery.sparkline A plugin for the jQuery JavaScript library to generate small sparkline charts directly in the browser. Stars Last Commit
trianglify qrohlf/trianglify Low poly style background generator with d3.js. Stars Last Commit
d3-cloud jasondavies/d3-cloud Create word clouds in JavaScript. Stars Last Commit
d4 heavysixer/d4 A friendly reusable charts DSL for D3. Stars Last Commit
dimple.js - Easy charts for business analytics powered by d3.
chartist-js gionkunz/chartist-js Simple responsive charts. Stars Last Commit
epoch epochjs/epoch A general purpose real-time charting library. Stars Last Commit
c3 c3js/c3 D3-based reusable chart library. Stars Last Commit
BabylonJS BabylonJS/Babylon.js A framework for building 3D games with HTML 5 and WebGL. Stars Last Commit
recharts recharts/recharts Redefined chart library built with React and D3. Stars Last Commit
GraphicsJS AnyChart/GraphicsJS A lightweight JavaScript graphics library with the intuitive API, based on SVG/VML technology. Stars Last Commit
mxGraph jgraph/mxgraph Diagramming library that enables interactive graph and charting applications to be quickly created that run natively in any major browser that is supported by its vendor. Stars Last Commit
Frappe Charts frappe/charts GitHub-inspired simple and modern SVG charts for the web with zero dependencies. Stars Last Commit
Frappe Gantt frappe/gantt A simple, interactive, modern gantt chart library for the web. Stars Last Commit
G2 antvis/G2 A highly interactive data-driven visualization grammar for statistical charts. Stars Last Commit
G2Plot antvis/G2Plot An interactive and responsive charting library. Based on the grammar of graphics. Stars Last Commit
Cytoscape.js cytoscape/cytoscape.js A fully featured graph theory library. Stars Last Commit
cola.js - library for arranging your HTML5 documents and diagrams using constraint-based optimization techniques
jointjs clientIO/joint Diagramming library to create static diagrams or fully interactive diagramming tools. Stars Last Commit
vizzu vizzuhq/vizzu-lib Library for animated data visualizations and data stories. Stars Last Commit

There're also some great commercial libraries, like amchart, anychart, plotly, and lightning chart.

Timeline

Name Repository Description Stars Last Commit
TimelineJS v3 NUKnightLab/TimelineJS3 A Storytelling Timeline built in JavaScript. Stars Last Commit
timesheet.js sbstjn/timesheet.js JavaScript library for simple HTML5 & CSS3 time sheets. Stars Last Commit

Spreadsheet

Name Repository Description Stars Last Commit
HANDSONTABLE handsontable/handsontable Handsontable is a JavaScript/HTML5 Spreadsheet Library for Developers Stars Last Commit
Frappe Datatable frappe/datatable Frappe DataTable is a simple, modern and interactive datatable library for displaying tabular data. Stars Last Commit
Luckysheet mengshukeji/Luckysheet Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source. Stars Last Commit
Jspreadsheet CE jspreadsheet/ce Jspreadsheet is a lightweight vanilla javascript plugin to create amazing web-based interactive tables and spreadsheets compatible with other spreadsheet software. Stars Last Commit
RevoGrid revolist/revogrid RevoGrid is a fast, responsive excel like data grid library for modern web applications. Stars Last Commit

Editors

Name Repository Description Stars Last Commit
ace ajaxorg/ace Ace (Ajax.org Cloud9 Editor). Stars Last Commit
CodeMirror codemirror/CodeMirror In-browser code editor. Stars Last Commit
esprima ariya/esprima ECMAScript parsing infrastructure for multipurpose analysis. Stars Last Commit
quill quilljs/quill A cross browser rich text editor with an API. Stars Last Commit
medium-editor yabwe/medium-editor Medium.com WYSIWYG editor clone. Stars Last Commit
pen sofish/pen enjoy live editing (+markdown). Stars Last Commit
jquery-notebook raphaelcruzeiro/jquery-notebook A simple, clean and elegant text editor. Inspired by the awesomeness of Medium. Stars Last Commit
bootstrap-wysiwyg mindmup/bootstrap-wysiwyg Tiny bootstrap-compatible WYSIWYG rich text editor. Stars Last Commit
ckeditor-releases ckeditor/ckeditor-releases The best web text editor for everyone. Stars Last Commit
editor lepture/editor A markdown editor. still on development. Stars Last Commit
EpicEditor OscarGodson/EpicEditor An embeddable JavaScript Markdown editor with split fullscreen editing, live previewing, automatic draft saving, offline support, and more. Stars Last Commit
jsoneditor josdejong/jsoneditor A web-based tool to view, edit and format JSON. Stars Last Commit
vim.js coolwanglu/vim.js JavaScript port of Vim with a persistent ~/.vimrc. Stars Last Commit
Squire neilj/Squire HTML5 rich text editor. Stars Last Commit
TinyMCE tinymce/tinymce The JavaScript Rich Text editor. Stars Last Commit
trix basecamp/trix A rich text editor for everyday writing. By Basecamp. Stars Last Commit
Trumbowyg Alex-D/Trumbowyg A lightweight and amazing WYSIWYG JavaScript editor. Stars Last Commit
Draft.js facebook/draft-js A React framework for building text editors. Stars Last Commit
bootstrap-wysihtml5 jhollingworth/bootstrap-wysihtml5 Simple, beautiful wysiwyg editor Stars Last Commit
wysihtml5 xing/wysihtml5 Open source rich text editor based on HTML5 and the progressive-enhancement approach. Uses a sophisticated security concept and aims to generate fully valid HTML5 markup by preventing unmaintainable tag soups and inline styles. Stars Last Commit
raptor-editor PANmedia/raptor-editor Raptor, an HTML5 WYSIWYG content editor! Stars Last Commit
popline kenshin54/popline Popline is an HTML5 Rich-Text-Editor Toolbar. Stars Last Commit
Summernote summernote/summernote Super simple WYSIWYG editor. Stars Last Commit
Everright-formEditor Liberty-liu/Everright-formEditor A visual drag-and-drop low-code form editor Stars Last Commit

Documentation

Name Repository Description Stars Last Commit
DevDocs - is an all-in-one API documentation reader with a fast, organized, and consistent interface.
docco - is a quick-and-dirty, hundred-line-long, literate-programming-style documentation generator.
styledocco - generates documentation and style guide documents from your stylesheets.
Ronn rtomayko/ronn builds manuals. It converts simple, human readable textfiles to roff for terminal display, and also to HTML for the web. Stars Last Commit
dox tj/dox is a JavaScript documentation generator written with node. Dox no longer generates an opinionated structure or style for your docs, it simply gives you a JSON representation, allowing you to use markdown and JSDoc-style tags. Stars Last Commit
jsdox sutoiku/jsdox is a JSDoc3 to Markdown documentation generator. Stars Last Commit
ESDoc esdoc/esdoc is a good documentation generator for JavaScript. Stars Last Commit
YUIDoc - is a Node.js application that generates API documentation from comments in source, using a syntax similar to tools like Javadoc and Doxygen.
coddoc - is a jsdoc parsing library. Coddoc is different in that it is easily extensible by allowing users to add tag and code parsers through the use of coddoc.addTagHandler and coddoc.addCodeHandler. coddoc also parses source code to be used in APIs.
sphinx - a tool that makes it easy to create intelligent and beautiful documentation
Beautiful docs beautiful-docs/beautiful-docs is a documentation viewer based on markdown files. Stars Last Commit
documentation.js - API documentation generator with support for ES2015+ and flow annotation.
jsduck senchalabs/jsduck API documentation generator made for Sencha JavaScript frameworks, but can be used for other frameworks too. Stars Last Commit
codecrumbs Bogdan-Lyashenko/codecrumbs is a visual tool for learning and documenting a codebase by putting breadcrumbs in source code. Stars Last Commit

Files

Libraries for working with files.

Name Repository Description Stars Last Commit
Papa Parse mholt/PapaParse A powerful CSV library that supports parsing CSV files/strings and also exporting to CSV. Stars Last Commit
jBinary jDataView/jBinary High-level I/O (loading, parsing, manipulating, serializing, saving) for binary files with declarative syntax for describing file types and data structures. Stars Last Commit
diff2html rtfpessoa/diff2html Git diff output parser and pretty HTML generator. Stars Last Commit
jsPDF MrRio/jsPDF JavaScript PDF generation. Stars Last Commit
PDF.js mozilla/pdf.js PDF Reader in JavaScript. Stars Last Commit

Functional Programming

Functional programming libraries to extend JavaScripts capabilities.

Name Repository Description Stars Last Commit
underscore jashkenas/underscore JavaScript's utility _ belt. Stars Last Commit
lodash lodash/lodash A utility library delivering consistency, customization, performance, & extras. Stars Last Commit
Sugar andrewplummer/Sugar A JavaScript library for working with native objects. Stars Last Commit
lazy.js dtao/lazy.js Like Underscore, but lazier. Stars Last Commit
ramda ramda/ramda A practical functional library for JavaScript programmers. Stars Last Commit
mout mout/mout Modular JavaScript Utilities. Stars Last Commit
preludejs alanrsoares/prelude-js Hardcore Functional Programming for JavaScript. Stars Last Commit
rambda selfrefactor/rambda Faster and smaller alternative to Ramda. Stars Last Commit
fxts marpple/FxTS Lazy evaluation and concurrency. Stars Last Commit
wild-wild-path ehmicky/wild-wild-path Object property paths with wildcards and regexps. Stars Last Commit
sweet-monads JSMonk/sweet-monads A utility library containing popular monads and lazy iterators. Stars Last Commit

Reactive Programming

Reactive programming libraries to extend JavaScripts capabilities.

Name Repository Description Stars Last Commit
RxJS ReactiveX/rxjs A reactive programming library for JavaScript. Stars Last Commit
Bacon baconjs/bacon.js FRP (functional reactive programming) library for JavaScript. Stars Last Commit
Kefir pozadi/kefir FRP library for JavaScript inspired by Bacon.js and RxJS with focus on high performance and low memory consumption. Stars Last Commit
Highland - Re-thinking the JavaScript utility belt, Highland manages synchronous and asynchronous code easily, using nothing more than standard JavaScript and Node-like Streams.
Most.js cujojs/most high performance FRP library. Stars Last Commit
MobX mobxjs/mobx TFRP library for simple, scalable state management. Stars Last Commit
Cycle.js - A functional and reactive JavaScript library for cleaner code.
concent concentjs/concent Definitely the ❤️ simplest but strongest state management for react, it is predictable、progressive and efficient. Stars Last Commit

Data Structure

Data structure libraries to build a more sophisticated application.

Name Repository Description Stars Last Commit
immutable-js facebook/immutable-js Immutable Data Collections including Sequence, Range, Repeat, Map, OrderedMap, Set and a sparse Vector. Stars Last Commit
mori swannodette/mori A library for using ClojureScript's persistent data structures and supporting API from the comfort of vanilla JavaScript. Stars Last Commit
buckets mauriciosantos/Buckets-JS A complete, fully tested and documented data structure library written in JavaScript. Stars Last Commit
hashmap flesler/hashmap Simple hashmap implementation that supports any kind of keys. Stars Last Commit
ngraph.graph anvaka/ngraph.graph Graph data structure in javascript. Stars Last Commit
js-sdsl zly201/js-sdsl Refer to the javascript standard data structure library implemented by c++ stl, which supports c++ bidirectional iterator mode. Stars Last Commit

Date

Date Libraries.

Name Repository Description Stars Last Commit
moment moment/moment Parse, validate, manipulate, and display dates in JavaScript. Stars Last Commit
moment-timezone moment/moment-timezone Timezone support for moment.js. Stars Last Commit
jquery-timeago rmm5t/jquery-timeago A jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. "4 minutes ago"). Stars Last Commit
timezone-js mde/timezone-js Timezone-enabled JavaScript Date object. Uses Olson zoneinfo files for timezone data. Stars Last Commit
date MatthewMueller/date Date() for humans. Stars Last Commit
ms.js rauchg/ms.js Tiny millisecond conversion utility. Stars Last Commit
countdown.js gumroad/countdown.js Super simple countdowns. Stars Last Commit
timeago.js hustcc/timeago.js Simple library (less then 2kb) used to format date with *** time ago statement. Stars Last Commit
fecha taylorhakes/fecha Lightweight date formatting and parsing (~2KB). Meant to replace parsing and formatting functionality of moment.js. Stars Last Commit
date-fns date-fns/date-fns Modern JavaScript date utility library. Stars Last Commit
map-countdown dawidjaniga/map-countdown A browser countdown built on top of the Google Maps. Stars Last Commit
dayjs iamkun/dayjs Day.js 2KB immutable date library alternative to Moment.js with the same modern API. Stars Last Commit
luxon moment/luxon Luxon is a library for working with dates and times in JavaScript. Stars Last Commit
tempo formkit/tempo Parsing, formatting, and timezones — Tempo is a small tree-shakable library for native Date objects. Stars Last Commit

String

String Libraries.

Name Repository Description Stars Last Commit
voca panzerdp/voca The ultimate JavaScript string library Stars Last Commit
selecting EvandroLG/selecting A library that allows you to access the text selected by the user. Stars Last Commit
underscore.string epeli/underscore.string String manipulation extensions for Underscore.js JavaScript library. Stars Last Commit
string.js jprichardson/string.js Extra JavaScript string methods. Stars Last Commit
he mathiasbynens/he A robust HTML entity encoder/decoder written in JavaScript. Stars Last Commit
multiline sindresorhus/multiline Multiline strings in JavaScript. Stars Last Commit
query-string sindresorhus/query-string Parse and stringify URL query strings. Stars Last Commit
URI.js medialize/URI.js JavaScript URL mutation library. Stars Last Commit
jsurl Mikhus/domurl Lightweight URL manipulation with JavaScript. Stars Last Commit
sprintf.js alexei/sprintf.js A sprintf implementation. Stars Last Commit
url-pattern snd/url-pattern Easier than regex string matching patterns for urls and other strings. Turn strings into data or data into strings. Stars Last Commit
plexis plexis-js/plexis Lo-fi, powerful, community-driven string manipulation library. Stars Last Commit
url-state-machine anonrig/url-js Super fast spec-compliant URL parser state machine for Node.js. Stars Last Commit

Number

Name Repository Description Stars Last Commit
Numeral-js adamwdraper/Numeral-js A JavaScript library for formatting and manipulating numbers. Stars Last Commit
chance.js chancejs/chancejs Random generator helper in JavaScript. Can generate numbers, strings etc. Stars Last Commit
odometer HubSpot/odometer Smoothly transitions numbers with ease. Stars Last Commit
accounting.js josscrowcroft/accounting.js A lightweight JavaScript library for number, money and currency formatting - fully localisable, zero dependencies. Stars Last Commit
money.js josscrowcroft/money.js A tiny (1kb) JavaScript currency conversion library, for web & nodeJS. Stars Last Commit
Fraction.js infusion/Fraction.js A rational number library for JavaScript. Stars Last Commit
Complex.js infusion/Complex.js A complex number library for JavaScript. Stars Last Commit
Polynomial.js infusion/Polynomial.js A polynomials library for JavaScript. Stars Last Commit
Quaternion.js infusion/Quaternion.js A quaternion library for JavaScript Stars Last Commit

Storage

Name Repository Description Stars Last Commit
store.js marcuswestin/store.js LocalStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userData behavior under the hood. Stars Last Commit
localForage mozilla/localForage Offline storage, improved. Wraps IndexedDB, WebSQL, or localStorage using a simple but powerful API. Stars Last Commit
jStorage andris9/jStorage jStorage is a simple key/value database to store data on browser side. Stars Last Commit
cross-storage zendesk/cross-storage Cross domain local storage, with permissions. Stars Last Commit
basket.js addyosmani/basket.js A script and resource loader for caching & loading scripts with localStorage. Stars Last Commit
bag.js nodeca/bag.js A caching script and resource loader, similar to basket.js, but with additional k/v interface and localStorage / websql / indexedDB support. Stars Last Commit
basil.js Wisembly/basil.js The missing JavaScript smart persistent layer. Stars Last Commit
jquery-cookie carhartl/jquery-cookie A simple, lightweight jQuery plugin for reading, writing and deleting cookies. Stars Last Commit
js-cookie js-cookie/js-cookie A simple, lightweight JavaScript API for handling browser cookies. Stars Last Commit
Cookies ScottHamper/Cookies JavaScript Client-Side Cookie Manipulation Library. Stars Last Commit
DB.js aaronpowell/db.js Promise based IndexDB Wrapper library. Stars Last Commit
lawnchair.js brianleroux/lawnchair Simple client-side JSON storage. Stars Last Commit
sql.js kripken/sql.js SQLite compiled to JavaScript through Emscripten. Stars Last Commit
pouchdb pouchdb/pouchdb Javascript db inspired by Apache CouchDB to run well within the browser. Stars Last Commit
crumbsjs nirtz89/crumbsjs A lightweight vanilla ES6 cookies and local storage JavaScript library. Stars Last Commit
awesome-web-storage softvar/awesome-web-storage Everything you need to know about client-side storage. Stars Last Commit
datavore StanfordHCI/datavore A small, fast, in-browser database engine written in JavaScript. Stars Last Commit
Hoodie hoodiehq/hoodie Offline First backend to work in browser without internet connectivity. Stars Last Commit
NeDB louischatriot/nedb Embedded Persistent database for Browsers, nw.js, electron. Stars Last Commit
Lovefield - Lovefield is a relational database for web apps, By Google.
Dexie.js dexie/Dexie.js Dexie.js is a wrapper library for indexedDB. Stars Last Commit
proxy-web-storage KID-joker/proxy-web-storage Keep the type of storage value unchanged and change array and object directly. Supports listening to the changes and setting expires. Stars Last Commit
PostgreSQL Browser datawan-labs/pg Browser PostgreSQL Playground, no server, just client and pglite (postgresql wasm) Stars Last Commit

Color

Name Repository Description Stars Last Commit
randomColor davidmerfield/randomColor A color generator for JavaScript. Stars Last Commit
chroma.js gka/chroma.js JavaScript library for all kinds of color manipulations. Stars Last Commit
color Qix-/color JavaScript color conversion and manipulation library. Stars Last Commit
colors mrmrs/colors Smarter defaults for colors on the web. Stars Last Commit
PleaseJS Fooidge/PleaseJS JavaScript Library for creating random pleasing colors and color schemes. Stars Last Commit
TinyColor bgrins/TinyColor Fast, small color manipulation and conversion for JavaScript. Stars Last Commit
Vibrant.js jariz/vibrant.js Extract prominent colors from an image. Stars Last Commit

i18n and l10n

Internationalization (i18n) and localization (l10n) JavaScript libraries.

Name Repository Description Stars Last Commit
i18next i18next/i18next internationalisation (i18n) with JavaScript the easy way. Stars Last Commit
polyglot airbnb/polyglot.js tiny i18n helper library. Stars Last Commit
babelfish nodeca/babelfish i18n with human friendly API and built in plurals support. Stars Last Commit
ttag ttag-org/ttag Modern javascript i18n localization library based on ES6 tagged templates and the good old GNU gettext. Stars Last Commit
attranslate fkirc/attranslate A JavaScript-tool for synchronizing translation-files, including JSON/YAML/XML and other formats. Stars Last Commit

Control Flow

Name Repository Description Stars Last Commit
async caolan/async Async utilities for node and the browser. Stars Last Commit
q kriskowal/q A tool for making and composing asynchronous promises in JavaScript. Stars Last Commit
step creationix/step An async control-flow library that makes stepping through logic easy. Stars Last Commit
contra bevacqua/contra Asynchronous flow control with a functional taste to it. Stars Last Commit
Bluebird petkaantonov/bluebird fully featured promise library with focus on innovative features and performance. Stars Last Commit
when cujojs/when A solid, fast Promises/A+ and when() implementation, plus other async goodies. Stars Last Commit
ObjectEventTarget gartz/ObjectEventTarget Provide a prototype that add support to event listeners (with same behavior of EventTarget from DOMElements available on browsers). Stars Last Commit
sporadic marcoonroad/sporadic Composable concurrency abstractions (such as streams, coroutines and Go-like channels) on top of promises, for Node and browser engines. Stars Last Commit

Routing

Name Repository Description Stars Last Commit
director flatiron/director A tiny and isomorphic URL router for JavaScript. Stars Last Commit
page.js visionmedia/page.js Micro client-side router inspired by the Express router (~1200 bytes). Stars Last Commit
pathjs mtrpcic/pathjs Simple, lightweight routing for web browsers. Stars Last Commit
crossroads millermedeiros/crossroads.js JavaScript Routes. Stars Last Commit
davis.js olivernn/davis.js RESTful degradable JavaScript routing using pushState. Stars Last Commit
navaid lukeed/navaid A navigation aid (aka, router) for the browser in 850 bytes~! Stars Last Commit

Security

Name Repository Description Stars Last Commit
DOMPurify cure53/DOMPurify A DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. Stars Last Commit
js-xss leizongmin/js-xss Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist. Stars Last Commit
xss-filters yahoo/xss-filters Secure XSS Filters by Yahoo. Stars Last Commit
sanitize-html apostrophecms/sanitize-html sanitize-html provides a simple HTML sanitizer with a clear API. Stars Last Commit

Log

Name Repository Description Stars Last Commit
log adamschwartz/log Console.log with style. Stars Last Commit
Conzole Oaxoa/Conzole A debug panel built in JavaScript that wraps JavaScript native console object methods and functionality in a panel displayed inside the page. Stars Last Commit
console.log-wrapper patik/console.log-wrapper Log to the console in any browser with clarity. Stars Last Commit
loglevel pimterry/loglevel Minimal lightweight logging for JavaScript, adding reliable log level methods to wrap any available console.log methods. Stars Last Commit
minilog - Lightweight client & server-side logging with Stream-API backends.
storyboard - Universal logging library + Chrome extension; it lets you see all client and server tasks triggered by a user action in a single place.
LogTape - Simple logging library with zero dependencies for Deno, Node.js, Bun, browsers, and edge functions.

RegExp

Name Repository Description Stars Last Commit
RegEx101 - Online regex tester and debugger for JavaScript. Also supports Python, PHP and PCRE.
RegExr - HTML/JS based tool for creating, testing, and learning about Regular Expressions.
Regulex - JavaScript Regular Expression Parser & Visualizer.
Regex-Vis - Regex visualizer & editor.

Voice Command

Name Repository Description Stars Last Commit
annyang TalAter/annyang A JavaScript library for adding voice commands to your site, using speech recognition. Stars Last Commit
voix.js pazguille/voix A JavaScript library to add voice commands to your sites, apps or games. Stars Last Commit

API

Name Repository Description Stars Last Commit
axios axios/axios Promise based HTTP client for the browser and node.js. Stars Last Commit
bottleneck SGrondin/bottleneck A powerful rate limiter that makes throttling easy. Stars Last Commit
oauth-signature-js bettiolo/oauth-signature-js JavaScript OAuth 1.0a signature generator for node and the browser. Stars Last Commit
amygdala lincolnloop/amygdala RESTful HTTP client for JavaScript powered web applications. Stars Last Commit
jquery.rest jpillora/jquery.rest A jQuery plugin for easy consumption of RESTful APIs. Stars Last Commit
Rails Ranger victor-am/rails-ranger An opinionated REST client for Ruby on Rails APIs. Stars Last Commit
wretch elbywan/wretch A tiny wrapper built around fetch with an intuitive syntax. Stars Last Commit
FarFetch WebsiteBeaver/far-fetch Modern Fetch API wrapper for simplicity, with concise file uploading. Stars Last Commit
Optic opticdev/optic Optic automatically documents and tests your APIs. Stars Last Commit
SWR vercel/swr React Hooks library for remote data fetching. Stars Last Commit
React Query tannerlinsley/react-query Hooks for fetching, caching and updating asynchronous data in React. Stars Last Commit
SWRV Kong/swrv Stale-while-revalidate data fetching for Vue. Stars Last Commit
Vue Query DamianOsipiuk/vue-query Hooks for fetching, caching and updating asynchronous data in Vue. Stars Last Commit

Streaming

Name Repository Description Stars Last Commit
Tailor zalando/tailor Streaming layout service for front-end microservices, inspired by Facebook's BigPipe. Stars Last Commit

Vision Detection

Name Repository Description Stars Last Commit
tracking.js eduardolundgren/tracking.js A modern approach for Computer Vision on the web. Stars Last Commit
ocrad.js antimatter15/ocrad.js OCR in JavaScript via Emscripten. Stars Last Commit

Machine Learning

Name Repository Description Stars Last Commit
ConvNetJS karpathy/convnetjs Deep Learning in JavaScript. Train Convolutional Neural Networks (or ordinary ones) in your browser. Stars Last Commit
DN2A dn2a/dn2a-javascript Digital Neural Networks Architecture. Stars Last Commit
Brain.js harthur/brain Neural networks in JavaScript. Stars Last Commit
Mind.js stevenmiller888/mind A flexible neural network library. Stars Last Commit
Synaptic.js cazala/synaptic Architecture-free neural network library for node.js and the browser. Stars Last Commit
TensorFlow.js - A JavaScript library for training and deploying ML models in the browser and on Node.js.
ml5.js - Friendly Machine Learning for the Web.
Synapses mrdimosthenis/Synapses Lightweight cross-platform Neural Network library. Stars Last Commit
m2cgen BayesWitnesses/m2cgen A CLI tool to transpile trained classic ML models into a native JavaScript code with zero dependencies. Stars Last Commit
JS-PyTorch eduardoleao052/js-pytorch GPU accelerated PyTorch in JavaScript. Stars Last Commit

Browser Detection

Name Repository Description Stars Last Commit
bowser ded/bowser a browser detector. Stars Last Commit

Operating System

Name Repository Description Stars Last Commit
os.js os-js/OS.js An open-source web desktop platform with a window manager, application APIs, GUI toolkit, filesystem abstractions and much more. Stars Last Commit

Benchmark

Name Repository Description Stars Last Commit
benchmark.js bestiejs/benchmark.js A benchmarking library. As used on jsPerf.com. Stars Last Commit
matcha logicalparadox/matcha A caffeine driven, simplistic approach to benchmarking. Stars Last Commit
bencher bencherdev/bencher A suite of continuous benchmarking tools designed to catch performance regressions in CI. Stars Last Commit

Web Worker

Name Repository Description Stars Last Commit
partytown BuilderIO/partytown Relocate resource intensive third-party scripts off of the main thread and into a web worker. Stars Last Commit
comlink GoogleChromeLabs/comlink Comlink is a tiny library (1.1kB), that removes the mental barrier of thinking about postMessage and hides the fact that you are working with workers. Stars Last Commit
greenlet developit/greenlet Move an async function into its own thread. Stars Last Commit
workerize developit/workerize Moves a module into a Web Worker, automatically reflecting exported functions as asynchronous proxies. Stars Last Commit
worker-dom ampproject/worker-dom An in-progress implementation of the DOM API intended to run within a Web Worker. Stars Last Commit
threads.js andywer/threads.js Offload CPU-intensive tasks to worker threads in node.js, web browsers and electron using one uniform API. Stars Last Commit
workly pshihn/workly A really simple way to move a function or class to a web worker. Stars Last Commit
stockroom developit/stockroom Offload your store management to a worker easily. Stars Last Commit
workerpool josdejong/workerpool Offload tasks to a pool of workers on node.js and in the browser. Stars Last Commit
clooney GoogleChromeLabs/clooney Clooney is an actor library for the web. Use workers without thinking about workers. Stars Last Commit

Code highlighting

Name Repository Description Stars Last Commit
Highlight.js isagalaev/highlight.js JavaScript syntax highlighter. Stars Last Commit
PrismJS PrismJS/prism Lightweight, robust, elegant syntax highlighting. Stars Last Commit

Loading Status

Libraries for indicate load status.

Name Repository Description Stars Last Commit
Mprogress.js lightningtgc/MProgress.js Create Google Material Design progress linear bars. Stars Last Commit
NProgress - Slim progress bars for Ajax'y applications.
Spin.js fgnass/spin.js A spinning activity indicator. Stars Last Commit
progress.js usablica/progress.js Create and manage progress bar for every objects on the page. Stars Last Commit
progressbar.js kimmobrunfeldt/progressbar.js Beautiful and responsive progress bars with animated SVG paths. Stars Last Commit
pace HubSpot/pace Automatically add a progress bar to your site. Stars Last Commit
topbar buunguyen/topbar Tiny & beautiful site-wide progress indicator. Stars Last Commit
nanobar jacoborus/nanobar Very lightweight progress bars. No jQuery. Stars Last Commit
PageLoadingEffects codrops/PageLoadingEffects Modern ways of revealing new content using SVG animations. Stars Last Commit
SpinKit tobiasahlin/SpinKit A collection of loading indicators animated with CSS. Stars Last Commit
Ladda hakimel/Ladda Buttons with built-in loading indicators. Stars Last Commit
css-loaders lukehaas/css-loaders A collection of loading spinners animated with CSS Stars Last Commit

Validation

Name Repository Description Stars Last Commit
Parsley.js guillaumepotier/Parsley.js Validate your forms, frontend, without writing a single line of JavaScript. Stars Last Commit
jquery-validation jzaefferer/jquery-validation jQuery Validation Plugin. Stars Last Commit
validator.js chriso/validator.js String validation and sanitization. Stars Last Commit
validate.js rickharrison/validate.js Lightweight JavaScript form validation library inspired by CodeIgniter. Stars Last Commit
validatr jaymorrow/validatr Cross Browser HTML5 Form Validation. Stars Last Commit
FormValidation - The best jQuery plugin to validate form fields. Formerly BootstrapValidator.
is.js arasatasaygin/is.js Check types, regexps, presence, time and more. Stars Last Commit
FieldVal FieldVal/fieldval-js multipurpose validation library. Supports both sync and async validation. Stars Last Commit
Funval neuledge/funval Data validation using functions interfaces (support TypeScript). Stars Last Commit
vest ealush/vest 🦺 Declarative form validation framework inspired by unit testing. Stars Last Commit

Keyboard Wrappers

Name Repository Description Stars Last Commit
mousetrap ccampbell/mousetrap Simple library for handling keyboard shortcuts in JavaScript. Stars Last Commit
keymaster madrobby/keymaster A simple micro-library for defining and dispatching keyboard shortcuts. Stars Last Commit
Keypress dmauro/Keypress A keyboard input capturing utility in which any key can be a modifier key. Stars Last Commit
KeyboardJS RobertWHurst/KeyboardJS A JavaScript library for binding keyboard combos without the pain of key codes and key combo conflicts. Stars Last Commit
jquery.hotkeys jeresig/jquery.hotkeys jQuery Hotkeys lets you watch for keyboard events anywhere in your code supporting almost any key combination. Stars Last Commit
jwerty keithamus/jwerty Awesome handling of keyboard events. Stars Last Commit

Tours And Guides

Name Repository Description Stars Last Commit
intro.js usablica/intro.js A better way for new feature introduction and step-by-step users guide for your website and project. Stars Last Commit
shepherd HubSpot/shepherd Guide your users through a tour of your app. Stars Last Commit
bootstrap-tour sorich87/bootstrap-tour Quick and easy product tours with Twitter Bootstrap Popovers. Stars Last Commit
tourist easelinc/tourist Simple, flexible tours for your app. Stars Last Commit
hopscotch linkedin/hopscotch A framework to make it easy for developers to add product tours to their pages. Stars Last Commit
joyride zurb/joyride jQuery feature tour plugin. Stars Last Commit
focusable zzarcon/focusable Set a spotlight focus on DOM element adding a overlay layer to the rest of the page. Stars Last Commit
driver.js kamranahmedse/driver.js Powerful yet light-weight, vanilla JavaScript engine to drive the user's focus across the page Stars Last Commit

Notifications

Name Repository Description Stars Last Commit
iziToast dolce/iziToast Elegant, responsive, flexible and lightweight notification plugin with no dependencies. Stars Last Commit
messenger HubSpot/messenger Growl-style alerts and messages for your app. Stars Last Commit
noty needim/noty jQuery notification plugin. Stars Last Commit
pnotify sciactive/pnotify JavaScript notifications for Bootstrap, jQuery UI, and the Web Notifications Draft. Stars Last Commit
toastr CodeSeven/toastr Simple JavaScript toast notifications. Stars Last Commit
humane-js wavded/humane-js A simple, modern, browser notification system. Stars Last Commit
smoke.js hxgf/smoke.js Framework-agnostic styled alert system for JavaScript. Stars Last Commit
notie jaredreich/notie Simple notifications and inputs with no dependencies. Stars Last Commit
notifire notifirehq/notifire Open-source notification infrastructure for products. Stars Last Commit
toastify-js apvarun/toastify-js Pure JavaScript library for better notification messages. Stars Last Commit

Sliders

Name Repository Description Stars Last Commit
Swiper nolimits4web/Swiper Mobile touch slider and framework with hardware accelerated transitions. Stars Last Commit
slick kenwheeler/slick The last carousel you'll ever need. Stars Last Commit
slidesJs - Is a responsive slideshow plug-in for JQuery(1.7.1+) with features like touch and CSS3 transitions
FlexSlider woothemes/FlexSlider An awesome, fully responsive jQuery slider plugin. Stars Last Commit
sly darsain/sly JavaScript library for one-directional scrolling with item based navigation support. Stars Last Commit
vegas jaysalvat/vegas A jQuery plugin to add beautiful fullscreen backgrounds to your webpages. It even allows Slideshows. Stars Last Commit
Sequence IanLunn/Sequence CSS animation framework for creating responsive sliders, presentations, banners, and other step-based applications. Stars Last Commit
reveal.js hakimel/reveal.js A framework for easily creating beautiful presentations using HTML. Stars Last Commit
impress.js impress/impress.js It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com. Stars Last Commit
bespoke.js bespokejs/bespoke DIY Presentation Micro-Framework Stars Last Commit
Strut tantaman/Strut Strut - An Impress.js and Bespoke.js Presentation Editor Stars Last Commit
PhotoSwipe dimsemenov/PhotoSwipe JavaScript image gallery for mobile and desktop, modular, framework independent. Stars Last Commit
jcSlider JoanClaret/jcSlider A responsive slider jQuery plugin with CSS animations. Stars Last Commit
basic-jquery-slider jcobb/basic-jquery-slider Simple to use, simple to theme, simple to customise. Stars Last Commit
jQuery.adaptive-slider creative-punch/jQuery.adaptive-slider A jQuery plugin for a slider with adaptive colored figcaption and navigation. Stars Last Commit
slidr bchanx/slidr add some slide effects. Stars Last Commit
Flickity metafizzy/flickity Touch, responsive, flickable galleries. Stars Last Commit
Glide.js jedrzejchalubek/glidejs Responsive and touch-friendly jQuery slider. It's simple, lightweight and fast. Stars Last Commit
Embla Carousel davidcetinkaya/embla-carousel An extensible low level carousel for the web, written in TypeScript. Stars Last Commit

Range Sliders

Name Repository Description Stars Last Commit
Ion.RangeSlider IonDen/ion.rangeSlider Powerful and easily customizable range slider with many options and skin support. Stars Last Commit
jQRangeSlider ghusse/jQRangeSlider A JavaScript slider selector that supports dates. Stars Last Commit
noUiSlider leongersen/noUiSlider A lightweight, highly customizable range slider without bloat. Stars Last Commit
rangeslider.js andreruffert/rangeslider.js HTML5 input range slider element polyfill. Stars Last Commit

Form Widgets

Input

Name Repository Description Stars Last Commit
typeahead.js twitter/typeahead.js A fast and fully-featured autocomplete library. Stars Last Commit
tag-it aehlke/tag-it A jQuery UI plugin to handle multi-tag fields as well as tag suggestions/autocomplete. Stars Last Commit
At.js ichord/At.js Add GitHub like mentions autocomplete to your application. Stars Last Commit
Placeholders.js jamesallardice/Placeholders.js A JavaScript polyfill for the HTML5 placeholder attribute. Stars Last Commit
fancyInput yairEO/fancyInput Makes typing in input fields fun with CSS3 effects. Stars Last Commit
jQuery-Tags-Input xoxco/jQuery-Tags-Input Magically convert a simple text input into a cool tag list with this jQuery plugin. Stars Last Commit
vanilla-masker BankFacil/vanilla-masker A pure JavaScript mask input. Stars Last Commit
Ion.CheckRadio IonDen/ion.checkRadio jQuery plugin for styling checkboxes and radio-buttons. With skin support. Stars Last Commit
awesomplete LeaVerou/awesomplete Ultra lightweight, usable, beautiful autocomplete with zero dependencies. - https://projects.verou.me/awesomplete/ Stars Last Commit

Calendar

Name Repository Description Stars Last Commit
pickadate.js amsul/pickadate.js The mobile-friendly, responsive, and lightweight jQuery date & time input picker. Stars Last Commit
bootstrap-datepicker eternicode/bootstrap-datepicker A datepicker for @twitter bootstrap forked from Stefan Petre's (of eyecon.ro), improvements by @eternicode. Stars Last Commit
Pikaday dbushell/Pikaday A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS. Stars Last Commit
fullcalendar fullcalendar/fullcalendar Full-sized drag & drop event calendar (jQuery plugin). Stars Last Commit
rome bevacqua/rome A customizable date (and time) picker. Dependency free, opt-in UI. Stars Last Commit
Date Range Picker dangrossman/daterangepicker creates a dropdown menu from which a user can select a range of dates. Stars Last Commit
Duet Date Picker duetds/date-picker open source version of Duet Design Systems accessible date picker, WCAG 2.1 accessibility complaint Stars Last Commit
tui.calendar nhn/tui.calendar A JavaScript schedule calendar that is full featured. Now your service just got the customizable calendar. Stars Last Commit
Schedule-X schedule-x/schedule-x Material design event calendar. Features drag & drop, dark mode, multiple views and more. Stars Last Commit

Select

Name Repository Description Stars Last Commit
selectize.js selectize/selectize.js Selectize is the hybrid of a textbox and <select> box. It's jQuery based and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc. Stars Last Commit
select2 select2/select2 a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results. Stars Last Commit
chosen harvesthq/chosen A library for making long, unwieldy select boxes more friendly. Stars Last Commit

File Uploader

Name Repository Description Stars Last Commit
jQuery-File-Upload blueimp/jQuery-File-Upload File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Stars Last Commit
dropzone enyo/dropzone Dropzone is an easy to use drag'n'drop library. It supports image previews and shows nice progress bars. Stars Last Commit
flow.js flowjs/flow.js A JavaScript library providing multiple simultaneous, stable, fault-tolerant and resumable/restartable file uploads via the HTML5 File API. Stars Last Commit
fine-uploader FineUploader/fine-uploader Multiple file upload plugin with progress-bar, drag-and-drop, direct-to-S3 uploading. Stars Last Commit
FileAPI mailru/FileAPI A set of JavaScript tools for working with files. Multiupload, drag'n'drop and chunked file upload. Images: crop, resize and auto orientation by EXIF. Stars Last Commit
plupload moxiecode/plupload A JavaScript API for dealing with file uploads it supports features like multiple file selection, file type filtering, request chunking, client side image scaling and it uses different runtimes to achieve this such as HTML 5, Silverlight and Flash. Stars Last Commit
filepond pqina/filepond A JavaScript library that can upload anything you throw at it, optimizes images for faster uploads, and offers a great, accessible, silky smooth user experience. Stars Last Commit

Other

Name Repository Description Stars Last Commit
form jquery-form/form jQuery Form Plugin. Stars Last Commit
Garlic.js guillaumepotier/Garlic.js Automatically persist your forms' text and select field values locally, until the form is submitted. Stars Last Commit
Countable RadLikeWhoa/Countable A JavaScript function to add live paragraph-, word- and character-counting to an HTML element. Stars Last Commit
card jessepollak/card Make your credit card form better in one line of code. Stars Last Commit
stretchy LeaVerou/stretchy Form element autosizing, the way it should be. Stars Last Commit
analytics davidwells/analytics A lightweight, extendable analytics library designed to work with any third-party analytics provider to track page views, custom events, & identify users. Stars Last Commit
dat.GUI dataarts/dat.gui A lightweight gui controller for changing variables in JavaScript. Stars Last Commit

Tips

Name Repository Description Stars Last Commit
tipsy jaz303/tipsy Facebook-style tooltips plugin for jQuery. Stars Last Commit
opentip enyo/opentip An open source JavaScript tooltip based on the prototype framework. Stars Last Commit
qTip2 qTip2/qTip2 Pretty powerful tooltips. Stars Last Commit
tooltipster iamceege/tooltipster A jQuery tooltip plugin. Stars Last Commit
simptip arashmanteghi/simptip A simple CSS tooltip made with Sass. Stars Last Commit
toolbar paulkinzett/toolbar A tooltip style toolbar jQuery plugin Stars Last Commit
hint.css chinchang/hint.css A tooltip library in CSS for your lovely websites. Stars Last Commit

Modals and Popups

Name Repository Description Stars Last Commit
Magnific-Popup dimsemenov/Magnific-Popup Light and responsive lightbox script with focus on performance. Stars Last Commit
jquery-popbox gristmill/jquery-popbox jQuery PopBox UI Element. Stars Last Commit
jquery.avgrund.js voronianski/jquery.avgrund.js A jQuery plugin with new modal concept for popups. Stars Last Commit
vex HubSpot/vex A modern dialog library which is highly configurable and easy to style. Stars Last Commit
bootstrap-modal jschr/bootstrap-modal Extends the default Bootstrap Modal class. Responsive, stackable, ajax and more. Stars Last Commit
css-modal drublic/css-modal A modal built out of pure CSS. Stars Last Commit
jquery-popup-overlay vast-engineering/jquery-popup-overlay jQuery plugin for responsive and accessible modal windows and tooltips. Stars Last Commit
SweetAlert t4t5/sweetalert An awesome replacement for JavaScript's alert. Stars Last Commit
SweetAlert2 sweetalert2/sweetalert2 An awesome replacement for JavaScript's alert. Stars Last Commit
baguetteBox.js feimosi/baguetteBox.js Simple and easy to use lightbox script written in pure JavaScript. Stars Last Commit
colorbox jackmoore/colorbox A light-weight, customizable lightbox plugin for jQuery. Stars Last Commit
fancyBox fancyapps/fancyBox A tool that offers a nice and elegant way to add zooming functionality for images, html content and multi-media on your webpages. Stars Last Commit
swipebox brutaldesign/swipebox A touchable jQuery lightbox Stars Last Commit
jBox StephanWagner/jBox jBox is a powerful and flexible jQuery plugin, taking care of all your popup windows, tooltips, notices and more. Stars Last Commit
lightGallery sachinchoolur/lightGallery A customizable, modular, responsive, lightbox gallery plugin for jQuery. Stars Last Commit
keukenhof Alexandrshy/keukenhof Lightweight, no dependencies, accessibility enabled TypeScript library for creating modal windows. Stars Last Commit
screenfull.js sindresorhus/screenfull.js the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen. Smoothens out the browser implementation differences, so you don't have to. Stars Last Commit

Scroll

Name Repository Description Stars Last Commit
scrollMonitor stutrek/scrollMonitor A simple and fast API to monitor elements as you scroll. Stars Last Commit
headroom WickyNilliams/headroom.js Give your pages some headroom. Hide your header until you need it. Stars Last Commit
onepage-scroll peachananr/onepage-scroll Create an Apple-like one page scroller website (iPhone 5S website) with One Page Scroll plugin. Stars Last Commit
iscroll cubiq/iscroll iScroll is a high performance, small footprint, dependency free, multi-platform JavaScript scroller. Stars Last Commit
skrollr Prinzhorn/skrollr Stand-alone parallax scrolling library for mobile (Android + iOS) and desktop. No jQuery. Stars Last Commit
parallax wagerfield/parallax Parallax Engine that reacts to the orientation of a smart device. Stars Last Commit
stellar.js markdalgleish/stellar.js Parallax scrolling made easy. Stars Last Commit
plax cameronmcefee/plax jQuery powered parallaxing. Stars Last Commit
jparallax stephband/jparallax jQuery plugin for creating interactive parallax effect. Stars Last Commit
fullPage alvarotrigo/fullPage.js A simple and easy to use plugin to create fullscreen scrolling websites (also known as single page websites). Stars Last Commit
ScrollMenu s-yadav/ScrollMenu A new interface to replace old boring scrollbar. Stars Last Commit
Clusterize.js NeXTs/Clusterize.js Tiny vanilla JS plugin to display large data sets easily. Stars Last Commit
simpleParallax geosigno/simpleParallax Simple and tiny JavaScript library to add parallax animations on any images Stars Last Commit
rellax dixonandmoe/rellax Buttery smooth, super lightweight, vanilla javascript parallax library. Stars Last Commit
asscroll ashthornton/asscroll A hybrid smooth scroll setup that combines the performance gains of virtual scroll with the reliability of native scroll. Stars Last Commit
stroll hakimel/stroll.js A collection of CSS List scroll effects bind to dom through javascript. Stars Last Commit
locomotive-scroll locomotivemtl/locomotive-scroll Detects the elements in viewport and smooth scrolling with parallax. Stars Last Commit
elevator.js tholman/elevator.js Finally, a "back to top" button that behaves like a real elevator. Stars Last Commit

Menu

Name Repository Description Stars Last Commit
jQuery-menu-aim kamens/jQuery-menu-aim jQuery plugin to fire events when user's cursor aims at particular dropdown menu items. For making responsive mega dropdowns like Amazon's. Stars Last Commit
jQuery contextMenu swisnl/jQuery-contextMenu contextMenu manager. Stars Last Commit
Slideout mango/slideout A responsive touch slideout navigation menu for mobile web apps. Stars Last Commit
Slide and swipe JoanClaret/slide-and-swipe-menu A sliding swipe menu that works with touchSwipe library. Stars Last Commit
mmenu FrDH/jQuery.mmenu The best jQuery plugin for app look-alike on- and off-canvas menus with sliding submenus for your website and webapp. Stars Last Commit

Table/Grid

Name Repository Description Stars Last Commit
jTable hikalkan/jtable A jQuery plugin to create AJAX based CRUD tables. Stars Last Commit
DataTables - (jQuery plug-in) It is a highly flexible tool, based upon the foundations of progressive enhancement, and will add advanced interaction controls to any HTML table.
Tabulator - (jQuery plug-in) An extremely flexible library that create tables with a range of interactive features from any JSON data source or existing HTML table.
Bootstrap Table - An Extension to the popular Bootstrap framework for creating tables that fit the style of your site with no need for additional markup.
floatThead mkoryak/floatThead (jQuery plug-in) lock any table's header while scrolling within the body. Works on any table and requires no custom html or css. Stars Last Commit
Masonry - A cascading grid layout library.
Packery - A grid layout library that uses a bin-packing algorithm. Useable for draggable layouts.
Isotope - A filterable, sortable, grid layout library. Can implement Masonry, Packery, and other layouts.
flexboxgrid kristoferjoseph/flexboxgrid Grid based on CSS3 flexbox. Stars Last Commit

Frameworks

Name Repository Description Stars Last Commit
Semantic UI - UI Kit with lots of themes and elements.
w2ui - A set of jQuery plugins for front-end development of data-driven web applications.
fluidity mrmrs/fluidity The worlds smallest fully-responsive css framework. Stars Last Commit
Ink sapo/Ink An HTML5/CSS3 framework used at SAPO for fast and efficient website design and prototyping. Stars Last Commit
DataFormsJS dataformsjs/dataformsjs A minimal JavaScript Framework and standalone components for rapid development of sites and SPA's. Stars Last Commit
EHTML Guseyn/EHTML HTML Framework that allows you not to write JavaScript code. Stars Last Commit

Boilerplates

Name Repository Description Stars Last Commit
html5-boilerplate h5bp/html5-boilerplate A professional front-end template for building fast, robust, and adaptable web apps or sites. Stars Last Commit
mobile-boilerplate h5bp/mobile-boilerplate A front-end template that helps you build fast, modern mobile web apps. Stars Last Commit
webplate chrishumboldt/webplate An awesome front-end framework that lets you stay focused on building your site or app while remaining really easy to use. Stars Last Commit
Cerberus TedGoas/Cerberus A few simple, but solid patterns for responsive HTML emails. Even in Outlook. Stars Last Commit
full-page-intro-and-navigation CodyHouse/full-page-intro-and-navigation An intro page with a full width background image, a bold animated menu and an iOS-like blurred effect behind the navigation. Stars Last Commit
Fluid-Squares crozynski/Fluid-Squares A fluid grid of square units. Stars Last Commit
Mobile-First-RWD bradfrost/Mobile-First-RWD An example of a mobile-first responsive web design. Stars Last Commit
this-is-responsive bradfrost/this-is-responsive This Is Responsive. Stars Last Commit
npm run-scripts addyosmani/9f10c555e32a8d06ddb0 Task automation with NPM run-scripts. Stars Last Commit
Wasp wasp-lang/wasp Wasp is a declarative domain-specific language for developing, building, and deploying modern Javascript full-stack web apps with less code. Stars Last Commit

Images

Name Repository Description Stars Last Commit
Drift imgix/drift Easily add "zoom on hover" functionality to your site's images. Lightweight, no-dependency JavaScript. Stars Last Commit
Magnificent.js AndersDJohnson/magnificent.js Zoom responsively, images & more, w/ jQuery. Stars Last Commit
Panolens.js pchen66/panolens.js Panolens.js is an event-driven and WebGL based panorama viewer. Lightweight and flexible Stars Last Commit

Gesture

Name Repository Description Stars Last Commit
hammer.js hammerjs/hammer.js A JavaScript library for multi-touch gestures. Stars Last Commit
touchemulator hammerjs/touchemulator Emulate touch input on your desktop. Stars Last Commit
Dragula bevacqua/dragula Drag and drop so simple it hurts. Stars Last Commit

Maps

Name Repository Description Stars Last Commit
Leaflet Leaflet/Leaflet JavaScript library for mobile-friendly interactive maps. Stars Last Commit
Cesium AnalyticalGraphicsInc/cesium Open Source WebGL virtual globe and map engine. Stars Last Commit
gmaps HPNeo/gmaps The easiest way to use Google Maps. Stars Last Commit
polymaps simplegeo/polymaps A free JavaScript library for making dynamic, interactive maps in modern web browsers. Stars Last Commit
kartograph.js kartograph/kartograph.js Open source JavaScript renderer for Kartograph SVG maps. Stars Last Commit
mapbox.js mapbox/mapbox.js Mapbox JavaScript API, a Leaflet Plugin. Stars Last Commit
jqvmap manifestinteractive/jqvmap jQuery Vector Map Library. Stars Last Commit
OpenLayers3 - A high-performance, feature-packed library for all your mapping needs.
H3js uber/h3 Hexagonal hierarchical geospatial indexing system ported to javascript by Uber for geospatial visualization. Stars Last Commit

Video/Audio

Name Repository Description Stars Last Commit
prettyembed.js mike-zarandona/prettyembed.js Prettier embeds for your YouTubes - with nice options like high-res preview images, advanced customization of embed options, and optional FitVids support. Stars Last Commit
Play-em JS adrienjoly/playemjs Play'em is a JavaScript component that manages a music/video track queue and plays a sequence of songs by embedding several players in a HTML DIV including Youtube, Soundcloud and Vimeo. Stars Last Commit
polyplayer Acconut/polyplayer Rule YouTube, Soundcloud and Vimeo player with one API. Stars Last Commit
flowplayer flowplayer/flowplayer The HTML5 video player for the web Stars Last Commit
mediaelement johndyer/mediaelement HTML5 <audio> or <video> player with Flash and Silverlight shims that mimics the HTML5 MediaElement API, enabling a consistent UI in all browsers. Stars Last Commit
SoundJS CreateJS/SoundJS A library to make working with audio on the web easier. It provides a consistent API for playing audio in different browsers. Stars Last Commit
video.js videojs/video.js Video.js - open source HTML5 & Flash video player. Stars Last Commit
FitVids.js davatron5000/FitVids.js A lightweight, easy-to-use jQuery plugin for fluid width video embeds. Stars Last Commit
Ion.Sound IonDen/ion.sound Simple sounds on any web page. Stars Last Commit
photobooth-js WolframHempel/photobooth-js A widget that allows users to take their avatar pictures on your site. Stars Last Commit
clappr clappr/clappr An extensible media player for the web http://clappr.io Stars Last Commit
ts-audio EvandroLG/ts-audio an agnostic and easy-to-use library to work with the AudioContext API. Stars Last Commit
AmplitudeJS - Open Source HTML5 Web Audio Library. Design your web audio player, the way you want. No dependencies required.
ractive-player ysulyma/ractive-player A library for making interactive videos in React.js. Stars Last Commit
ffmpeg.js Kagami/ffmpeg.js FFmpeg optimized for in-browser use: minimal size for faster loading, asm.js, performance tunings, etc. Stars Last Commit
flv.js bilibili/flv.js An HTML5 Flash Video (FLV) Player written in pure JavaScript without Flash. Stars Last Commit
hls.js video-dev/hls.js A JavaScript library that implements an HTTP Live Streaming client. It relies on HTML5 video and MediaSource Extensions for playback. Stars Last Commit

Typography

Name Repository Description Stars Last Commit
FlowType.JS simplefocus/FlowType.JS Web typography at its finest: font-size and line-height based on element width. Stars Last Commit
BigText zachleat/BigText jQuery plugin, calculates the font-size and word-spacing needed to match a line of text to a specific width. Stars Last Commit
circletype peterhry/circletype A jQuery plugin that lets you curve type on the web. Stars Last Commit
slabText freqDec/slabText A jQuery plugin for producing big, bold & responsive headlines. Stars Last Commit
simple-text-rotator peachananr/simple-text-rotator Add a super simple rotating text to your website with little to no markup. Stars Last Commit
novacancy.js chuckyglitch/novacancy.js Text Neon Golden effect jQuery plug-in. Stars Last Commit
jquery-responsive-text ghepting/jquery-responsive-text Make your text sizing responsive! Stars Last Commit
FitText.js davatron5000/FitText.js A jQuery plugin for inflating web type. Stars Last Commit
Lettering.js davatron5000/Lettering.js A lightweight, easy to use JavaScript <span> injector for radical Web Typography. Stars Last Commit

Animations

Name Repository Description Stars Last Commit
velocity julianshapiro/velocity Accelerated JavaScript animation. Stars Last Commit
jquery.transit rstacruz/jquery.transit Super-smooth CSS3 transformations and transitions for jQuery. Stars Last Commit
bounce.js tictail/bounce.js Create tasty CSS3 powered animations in no time. Stars Last Commit
GreenSock-JS greensock/GreenSock-JS High-performance HTML5 animations that work in all major browsers. Stars Last Commit
TransitionEnd EvandroLG/transitionEnd TransitionEnd is an agnostic and cross-browser library to work with transitioned event. Stars Last Commit
Dynamic.js michaelvillar/dynamics.js JavaScript library to create physics-based CSS animations. Stars Last Commit
the-cube pstadler/the-cube The Cube is an experiment with CSS3 transitions. Stars Last Commit
Effeckt.css h5bp/Effeckt.css A Performant Transitions and Animations Library. Stars Last Commit
animate.css daneden/animate.css A cross-browser library of CSS animations. As easy to use as an easy thing. Stars Last Commit
textillate jschr/textillate A simple plugin for CSS3 text animations. Stars Last Commit
move.js visionmedia/move.js CSS3 backed JavaScript animation framework. Stars Last Commit
animatable LeaVerou/animatable One property, two values, endless possibilities. Stars Last Commit
shuffle-images peachananr/shuffle-images The Simplest Way to shuffle through images in a Creative Way. Stars Last Commit
smoothState.js miguel-perez/smoothState.js Unobtrusive page transitions with jQuery. Stars Last Commit
Anime.js - A JavaScript animation engine.
Mo.js - Motion graphics toolbelt for the web.
particles.js VincentGarreau/particles.js A lightweight JavaScript library for creating particles. Stars Last Commit
tsParticles matteobruni/tsparticles A new and improved version of particles.js with bug fixes and many new features. Stars Last Commit
particles-bg lindelof/particles-bg A lightweight React particles animation background component. Stars Last Commit
barbajs barbajs/barba It helps you create fluid and smooth transitions between your website's pages. Stars Last Commit
typicaljs camwiegert/typical Animated typing in ~400 bytes 🐡 of JavaScript Stars Last Commit
AutoAnimate - Add motion to your apps with a single line of code.

Image Processing

Name Repository Description Stars Last Commit
lena.js davidsonfellipe/lena.js A Library for image processing with filters and util functions. Stars Last Commit
pica nodeca/pica High quality image resize (with fast Lanczos filter, implemented in pure JS). Stars Last Commit
cropper fengyuanchen/cropper A simple jQuery image cropping plugin. Stars Last Commit

ES6

Name Repository Description Stars Last Commit
es6features lukehoban/es6features Overview of ECMAScript 6 features. Stars Last Commit
es6-features rse/es6-features ECMAScript 6: Feature Overview & Comparison. Stars Last Commit
es6-cheatsheet DrkSephy/es6-cheatsheet ES2015 [ES6] cheatsheet containing tips, tricks, best practices and code snippets. Stars Last Commit
ECMAScript 6 compatibility table - Compatibility tables for all ECMAScript 6 features on a variety of environments.
Babel (Formerly 6to5) babel/babel Turn ES6+ code into vanilla ES5 with no runtime. Stars Last Commit
Traceur compiler google/traceur-compiler ES6 features > ES5. Includes classes, generators, promises, destructuring patterns, default parameters & more. Stars Last Commit

Generators

Name Repository Description Stars Last Commit
Gatsby.js gatsbyjs/gatsby React-based static site generator. Stars Last Commit
Gridsome gridsome/gridsome Vue-powered static site generator. Stars Last Commit
Docusaurus facebook/docusaurus React-based static site generator by Facebook, ideal for content-centric websites. Stars Last Commit
Next.js vercel/next.js React powered static site generator, and they say "All the tools you need to make the Web. Faster.". Stars Last Commit
Lume lumeland/lume Static site generator for Deno. Stars Last Commit
Astro withastro/astro The web framework for content-driven websites. Stars Last Commit

SDK

Name Repository Description Stars Last Commit
javascript-sdk-design huei90/javascript-sdk-design JavaScript SDK design guide extracted from work and personal experience. Stars Last Commit
Spotify SDK loverajoel/spotify-sdk Entity oriented SDK to work with the Spotify Web API. Stars Last Commit
Square Node.js SDK square/connect-nodejs-sdk JavaScript client library for payments and other Square APIs. Stars Last Commit
OpenAI SDK openai/openai-node Official JavaScript / TypeScript library for the OpenAI API. Stars Last Commit
Name Repository Description Stars Last Commit
lunr olivernn/lunr.js Library for use in the browser and It indexes JSON documents and provides a simple search interface for retrieving documents that best match text queries. Stars Last Commit
flexsearch nextapps-de/flexsearch It is a Next-Generation full text search library for Browser and Node.js. Stars Last Commit
Elasticlunr weixsong/elasticlunr.js This library is based on lunr.js, but more flexible and customized. Stars Last Commit

ORM

Name Repository Description Stars Last Commit
Prisma prisma/prisma Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB. Stars Last Commit
Sequelize sequelize/sequelize Feature-rich ORM for modern Node.js and TypeScript | PostgreSQL, MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB... Stars Last Commit
Mongoose Automattic/mongoose MongoDB object modeling designed to work in an asynchronous environment. Stars Last Commit
TypeORM typeorm/typeorm ORM for TypeScript and JavaScript, Works in NodeJS, Browser, Ionic, Cordova and Electron platforms. Stars Last Commit
Drizzle ORM drizzle-team/drizzle-orm Headless TypeScript ORM with a head. Runs on Node, Bun and Deno. Stars Last Commit
Kysely kysely-org/kysely A type-safe typescript SQL query builder. Stars Last Commit
Knex knex/knex A query builder for PostgreSQL, MySQL, CockroachDB, SQL Server, SQLite3 and Oracle, designed to be flexible, portable, and fun to use. Stars Last Commit
MikroORM mikro-orm/mikro-orm TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Stars Last Commit

WebSockets

Name Repository Description Stars Last Commit
Socket.io socketio/socket.io The most widely used WebSocket library for real-time applications. Supports auto-reconnection, rooms, and fallbacks (e.g., polling). Stars Last Commit
ws websockets/ws Simple to use, blazing fast and thoroughly tested WebSocket client and server for Node.js. Stars Last Commit

Misc

Name Repository Description Stars Last Commit
echo toddmotto/echo Lazy-loading images with data-* attributes. Stars Last Commit
picturefill scottjehl/picturefill A responsive image polyfill for <picture>, srcset, sizes. Stars Last Commit
platform.js bestiejs/platform.js A platform detection library that works on nearly all JavaScript platforms. Stars Last Commit
json3 bestiejs/json3 A modern JSON implementation compatible with nearly all JavaScript platforms. Stars Last Commit
Logical Or Not - A game about JavaScript specificities.
BitSet.js infusion/BitSet.js A JavaScript Bit-Vector implementation. Stars Last Commit
spoiler-alert joshbuddy/spoiler-alert SPOILER ALERT! A happy little jquery plugin to hide spoilers on your site. Stars Last Commit
jquery.vibrate.js illyism/jquery.vibrate.js Vibration API Wrappers Stars Last Commit
list.js javve/list.js Adds search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on existing HTML. Stars Last Commit
mixitup patrickkunka/mixitup MixItUp - A Filter & Sort Plugin. Stars Last Commit
grid hootsuite/grid Drag and drop library for two-dimensional, resizable and responsive lists. Stars Last Commit
jquery-match-height liabru/jquery-match-height a responsive equal heights plugin for jQuery. Stars Last Commit
SurveyJS surveyjs/survey-library SurveyJS is a JavaScript Survey and Form Library. https://surveyjs.io/ Stars Last Commit
Array Explorer sdras/array-explorer and Object Explorer - Resources to help figure out what native JavaScript method would be best to use at any given time. Stars Last Commit
Clipboard.js - "Copy to clipboard" without Flash or use of Frameworks.
ky sindresorhus/ky Tiny and elegant HTTP client based on the browser Fetch API. Stars Last Commit
Fcal 5anthosh/fcal Math expression evaluator. Stars Last Commit
emoji-button joeattardi/emoji-button Vanilla JavaScript emoji picker component. Stars Last Commit
iooxa iooxa/article Components for interactive scientific writing, reactive documents and explorable explanations. Stars Last Commit
Idyll idyll-lang/idyll Create explorable explanations and interactive storytelling essays. Can be embedded in HTML. Stars Last Commit
javascript-algorithms trekhleb/javascript-algorithms Algorithms and data structures implemented in JavaScript with explanations and links to further readings. Stars Last Commit
FingerprintJS fingerprintjs/fingerprintjs Makes a visitor identifier from a browser fingerprint that stays the same in incognito mode and when browser data is purged. Stars Last Commit
Peg.js pegjs/pegjs A simple parser generator for JavaScript that produces fast parsers with excellent error reporting. Usable from your browser, from the command line, or via JavaScript API. Stars Last Commit
lune ryanseys/lune Library to calculate the phases of the moon accurately. Stars Last Commit
jsemu fcambus/jsemu A list of emulators written in the JavaScript programming language. Stars Last Commit

Worth Reading

Name Repository Description Stars Last Commit
You Don't Know JS getify/You-Dont-Know-JS Possibly the best book written on modern JavaScript, completely readable online for free, or can be bought to support the author. Stars Last Commit
braziljs/js-the-right-way braziljs/js-the-right-way An easy-to-read, quick reference for JS best practices, accepted coding standards, and links around the Web. Stars Last Commit
JSbooks revolunet/JSbooks Directory of free JavaScript ebooks. Stars Last Commit
Superhero.js - A collection of resources about creating, testing and maintaining a large JavaScript code base.
SJSJ KittyGiraudel/SJSJ Simplified JavaScript Jargon is a community-driven attempt at explaining the loads of buzzwords making the current JavaScript ecosystem in a few simple words. Stars Last Commit
How to Write an Open Source JavaScript Library sarbbottam/write-an-open-source-js-lib A comprehensive guide through a set of steps to publish a JavaScript open source library. Stars Last Commit
JavaScript Tutorials - Learn Javascript online from a diverse range of user ranked online tutorials.
Functional-Light JavaScript getify/Functional-Light-JS Pragmatic, balanced FP in JavaScript. Stars Last Commit
Clean Code JavaScript ryanmcdermott/clean-code-javascript Clean Code concepts adapted for JavaScript. Stars Last Commit
Roadmap.sh JavaScript Roadmap - Learn JavaScript from a community sourced learning roadmap.

Other Awesome Lists

Name Repository Description Stars Last Commit
sotayamashita/awesome-css sotayamashita/awesome-css Stars Last Commit
emijrp/awesome-awesome emijrp/awesome-awesome Stars Last Commit
bayandin/awesome-awesomeness bayandin/awesome-awesomeness Stars Last Commit
sindresorhus/awesome sindresorhus/awesome Stars Last Commit
jnv/list jnv/lists Stars Last Commit
gianarb/angularjs gianarb/awesome-angularjs Stars Last Commit
peterkokot/awesome-dojo peterkokot/awesome-dojo Stars Last Commit
addyosmani/es6-tools addyosmani/es6-tools Stars Last Commit
ericdouglas/ES6-Learning ericdouglas/ES6-Learning Stars Last Commit
obetomuniz/awesome-webcomponents obetomuniz/awesome-webcomponents Stars Last Commit
willianjusten/awesome-svg willianjusten/awesome-svg Stars Last Commit
davidsonfellipe/awesome-wpo davidsonfellipe/awesome-wpo Stars Last Commit
instanceofpro/awesome-backbone sadcitizen/awesome-backbone Stars Last Commit
enaqx/awesome-react enaqx/awesome-react Stars Last Commit
bolshchikov/js-must-watch bolshchikov/js-must-watch Stars Last Commit
peterkokot/awesome-jquery peterkokot/awesome-jquery Stars Last Commit
davidyezsetz/you-might-not-need-jquery-plugins davidyezsetz/you-might-not-need-jquery-plugins Stars Last Commit
MaximAbramchuck/awesome-interviews MaximAbramchuck/awesome-interview-questions Stars Last Commit
denolib/awesome-deno denolib/awesome-deno Stars Last Commit
apvarun/awesome-bun apvarun/awesome-bun Stars Last Commit

Contributing

Contributions welcome! Read the contribution guidelines first.

License

CC0

To the extent possible under law, chencheng has waived all copyright and related or neighboring rights to this work.

S
Description
🐢 A collection of awesome browser-side JavaScript libraries, resources and shiny things.
Readme 26 MiB
Languages
Markdown 100%