Compare commits

..

24 Commits

Author SHA1 Message Date
Aaron
893301876b Add infographic library to README (#969) 2026-01-05 10:42:09 +01:00
Aaron
7cba816ecc Add G6 (#960) 2025-12-08 11:40:08 +01:00
tianchang
0c71e0d02d feat: add Pocket Mocker to Testing Frameworks (#962) 2025-12-08 10:58:25 +01:00
Tommaso Bertocchi
856eebfe19 feat: add pompelmi to Security section (#961)
Adding pompelmi, a malware scanner for Node.js.
2025-12-05 10:37:27 +01:00
Iddan Aaronsohn
53213600d9 Add Suites testing framework to Testing Frameworks section (#958) 2025-12-03 10:08:34 +01:00
WILLIAMS EZE
f91dfe22de feat: add Strip Node.js SDK to SDK section (#950) 2025-09-24 13:30:07 +02:00
WILLIAMS EZE
bffe5ad30d Add objection js to orm (#923)
* feat: add objection.js to ORM Section

* fix: fix name spelling
2025-09-24 13:28:45 +02:00
WILLIAMS EZE
eb33d33bc5 feat: this commit adds shiki to Code Highlighting (#948) 2025-09-23 13:21:12 +02:00
WILLIAMS EZE
1404f11ac1 feat: add yup to Type Checkers section (#949) 2025-09-23 13:20:02 +02:00
cmdragon
7752448167 Add package manager bun (#945) 2025-09-05 11:05:45 +02:00
Anthony Alex
80acdd2c62 Add KaibanJS (#943)
Checklist:

- [x] I've read and understood [Contributing Guidelines](CONTRIBUTING.md).
- [x] I've added the new resource at the end of its section.
- [x] This resource is out there for a while, and actively maintained.
- [x] This resource is popular enough and has at least a few hundred stars on GitHub.
2025-09-01 17:08:32 +02:00
AbdulAzeez Olanrewaju
f2f608d2c3 Stunk - State management library (#938)
* feat: Add Stunk

* fix

* fix

* fix: description of stunk
2025-08-04 22:42:39 +02:00
WILLIAMS EZE
fc50ce9c7d feat: this commit adds openAI sdk to the sdk section (#922)
* feat: this commit adds openAI sdk to the sdk section

* ref: move openAI SDK to the end of the section

* update openai sdk

---------

Co-authored-by: Gökay Gürcan <github@gokaygurcan.com>
2025-05-27 14:25:58 +02:00
WILLIAMS EZE
21e2d7758b feat: Add ws to Websockets section (#921)
* feat: Add WS to Websockets section

* rename WS to ws

* update ws

---------

Co-authored-by: Gökay Gürcan <github@gokaygurcan.com>
2025-05-27 14:25:10 +02:00
Viktor Svertoka
8923a7dd5e docs(md): add Vite link to bundlers list (#929)
Added a link to Vite in the bundlers section of the README. Vite is a next-generation frontend tooling optimized for speed and modern development workflows.
2025-04-01 10:45:59 +02:00
Viktor Svertoka
ddf0110d6f docs(regex-vis): add Regex visualizer & editor (#919)
Added Regex visualizer & editor

Features:

Visualizing regular expressions
Visual editing of regular expressions
Testing of regular expressions

Link: https://github.com/Bowen7/regex-vis
2025-03-07 10:18:18 +01:00
WILLIAMS EZE
5fe2379476 Add Websockets section and initialize it with Socket.io (#918) 2025-03-01 20:55:38 +01:00
Anthony Max
451932a669 Add HMPL (#916)
* Add HMPL

* Correcting the position in the list
2025-02-20 13:41:05 +01:00
ZAKARIA ELALAOUI
9f3d32b56a Add Astro (#914) 2025-02-16 16:48:19 +01:00
ZAKARIA ELALAOUI
b347d5599c Add some ORM packages (#913)
* Add Zod

* Add ORM Section

* Add Prisma to ORM section

* Add Sequelize to ORM section

* Add Mongoose to ORM section

* Add TypeORM to ORM section

* Add Drizzle ORM to ORM section

* Add Kysely to ORM section

* Add Knex to ORM section

* Add MikroORM to ORM section
2025-02-16 15:18:04 +01:00
ZAKARIA ELALAOUI
9c0ba38107 Add Zod (#912) 2025-02-16 12:13:29 +01:00
Serhii Chyzhyk
7d68235698 docs(assertion): add Supertest JavaScript assertion library (#911)
A popular HTTP assertion library for testing REST APIs, often used with other testing frameworks like Mocha or Jest
2025-02-15 20:13:40 +01:00
Viktor Svertoka
aaee06c9fe docs(regexp): add Regulex JavaScript RegExp visualizer (#908)
* docs(regexp): add Regulex JavaScript RegExp visualizer

Added Regulex, a JavaScript regular expression visualizer, to the RegExp section.  
Regulex provides an interactive way to understand regex patterns and their structure.

* docs(regexp): add Regulex JavaScript RegExp visualizer

Added Regulex, a JavaScript regular expression visualizer, to the RegExp section. Regulex provides an interactive way to understand regex patterns and their structure.
2025-02-13 21:41:38 +01:00
Viktor Svertoka
ff4dac0459 chore(ci): update GitHub Actions and Ruby version (#910)
1. Updated GitHub Actions versions:

actions/checkout@v2 → actions/checkout@v4

actions/upload-artifact@v2 → actions/upload-artifact@v4

Updated Ruby version from 2.6 to 3.2 (since 2.6 is no longer supported).

2. Optimized workflow steps:

Moved setup-ruby after checkout for better execution order.

Added bundler-cache: true to setup-ruby to prevent redundant gem installations.

3. Improved awesome_bot installation:

Added --no-document flag to speed up installation.

4. Made validation step more resilient:

Added continue-on-error: true to validate to prevent workflow failure on link errors.

5. Adjusted artifact handling:
Used if: ${{ failure() }} to ensure artifacts are uploaded only if the validation fails.
2025-02-13 18:50:19 +01:00
2 changed files with 53 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ on:
- synchronize - synchronize
env: env:
RUBY_VERSION: '2.6' RUBY_VERSION: '3.2'
defaults: defaults:
run: run:
@@ -22,30 +22,32 @@ jobs:
name: Validator name: Validator
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- id: checkout
name: Checkout
uses: actions/checkout@v4
- id: setup-ruby - id: setup-ruby
name: Setup Ruby name: Setup Ruby
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
ruby-version: ${{ env.RUBY_VERSION }} ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- id: checkout
name: Checkout
uses: actions/checkout@v2
- id: install-gem - id: install-gem
name: Install gem name: Install gem
run: | run: |
gem install awesome_bot gem install awesome_bot --no-document
- id: validate - id: validate
name: Validate name: Validate
continue-on-error: true
run: | run: |
awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect
- id: upload-artifact - id: upload-artifact
name: Upload artifact name: Upload artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v4
if: failure() if: ${{ failure() }}
with: with:
if-no-files-found: warn if-no-files-found: warn
name: ab-results name: ab-results
@@ -53,4 +55,3 @@ jobs:
ab-results-README.md.json ab-results-README.md.json
ab-results-README.md-filtered.json ab-results-README.md-filtered.json
ab-results-README.md-markdown-table.json ab-results-README.md-markdown-table.json

View File

@@ -75,6 +75,9 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [Generators](#generators) * [Generators](#generators)
* [Full Text Search](#full-text-search) * [Full Text Search](#full-text-search)
* [SDK](#sdk) * [SDK](#sdk)
* [ORM](#orm)
* [WebSockets](#websockets)
* [Generative AI](#generative-ai)
* [Misc](#misc) * [Misc](#misc)
* [Worth Reading](#worth-reading) * [Worth Reading](#worth-reading)
* [Other Awesome Lists](#other-awesome-lists) * [Other Awesome Lists](#other-awesome-lists)
@@ -96,6 +99,7 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [Duo](https://github.com/duojs/duo) - Next-generation package manager that blends the best ideas from Component, Browserify and Go to make organizing and writing front-end code quick and painless. * [Duo](https://github.com/duojs/duo) - Next-generation package manager that blends the best ideas from Component, Browserify and Go to make organizing and writing front-end code quick and painless.
* [yarn](https://yarnpkg.com/) - Fast, reliable, and secure dependency management. * [yarn](https://yarnpkg.com/) - Fast, reliable, and secure dependency management.
* [pnpm](https://pnpm.io/) - Fast, disk space efficient package manager. * [pnpm](https://pnpm.io/) - Fast, disk space efficient package manager.
* [bun](https://bun.sh/) - Bun is a fast JavaScript all-in-one toolkit.
## Component Management ## Component Management
@@ -130,6 +134,7 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [FuseBox](https://github.com/fuse-box/fuse-box) - A bundler that does it right * [FuseBox](https://github.com/fuse-box/fuse-box) - A bundler that does it right
* [Snowpack](https://www.snowpack.dev/) - A lightning-fast frontend build tool, designed for the modern web. * [Snowpack](https://www.snowpack.dev/) - A lightning-fast frontend build tool, designed for the modern web.
* [bundle](https://bundle.js.org) - A quick online npm package size checker. * [bundle](https://bundle.js.org) - A quick online npm package size checker.
* [Vite](https://vite.dev/) - Next Generation Frontend Tooling.
# Minimizers # Minimizers
@@ -143,6 +148,8 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [Hegel](https://hegel.js.org/) - A static type checker for JavaScript with a bias on type inference an strong type system. * [Hegel](https://hegel.js.org/) - A static type checker for JavaScript with a bias on type inference an strong type system.
* [TypL](https://github.com/getify/TypL) - the JavaScript Type Linter with a bias on type inference. * [TypL](https://github.com/getify/TypL) - the JavaScript Type Linter with a bias on type inference.
* [Hindley Milner Definitions](https://github.com/xodio/hm-def) - runtime type checking for JavaScript functions using Haskell-alike Hindley Milner type signatures. * [Hindley Milner Definitions](https://github.com/xodio/hm-def) - runtime type checking for JavaScript functions using Haskell-alike Hindley Milner type signatures.
* [Zod](https://github.com/colinhacks/zod) - TypeScript-first schema validation with built-in static type inference.
* [Yup](https://github.com/jquense/yup) - JavaScript schema builder and validator.
## Testing Frameworks ## Testing Frameworks
@@ -160,6 +167,7 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [ava](https://github.com/avajs/ava) - 🚀 Futuristic JavaScript test runner * [ava](https://github.com/avajs/ava) - 🚀 Futuristic JavaScript test runner
* [Cypress](https://www.cypress.io/) - Complete end-to-end testing framework for anything that runs in a browser and beyond. * [Cypress](https://www.cypress.io/) - Complete end-to-end testing framework for anything that runs in a browser and beyond.
* [WebdriverI/O](https://webdriver.io/) - Next-gen browser and mobile automation test framework for Node.js * [WebdriverI/O](https://webdriver.io/) - Next-gen browser and mobile automation test framework for Node.js
* [Suites](https://suites.dev) - A unit-testing framework for backends working with inversion of control and dependency injection
### Assertion ### Assertion
@@ -169,6 +177,8 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [Sinon.JS](https://github.com/sinonjs/sinon) - Test spies, stubs, and mocks for JavaScript. * [Sinon.JS](https://github.com/sinonjs/sinon) - Test spies, stubs, and mocks for JavaScript.
* [expect.js](https://github.com/Automattic/expect.js) - Minimalistic BDD-style assertions for Node.JS and the browser. * [expect.js](https://github.com/Automattic/expect.js) - Minimalistic BDD-style assertions for Node.JS and the browser.
* [proxyquire](https://github.com/thlorenz/proxyquire) - Stub nodejs's require. * [proxyquire](https://github.com/thlorenz/proxyquire) - Stub nodejs's require.
* [Supertest](https://github.com/visionmedia/supertest) - A popular HTTP assertion library for testing REST APIs, often used with other testing frameworks like Mocha or Jest
* [Pocket Mocker](https://github.com/tianchangNorth/pocket-mocker) - In-browser visual network mocking tool, supports fetch/XHR interception.
### Coverage ### Coverage
@@ -286,6 +296,7 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [xtemplate](https://github.com/xtemplate/xtemplate) - eXtensible Template Engine lib for node and the browser * [xtemplate](https://github.com/xtemplate/xtemplate) - eXtensible Template Engine lib for node and the browser
* [marko](https://github.com/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. * [marko](https://github.com/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.
* [swig](https://github.com/paularmstrong/swig) - (Archived) A simple, powerful, and extendable Node.js and browser-based JavaScript template engine. * [swig](https://github.com/paularmstrong/swig) - (Archived) A simple, powerful, and extendable Node.js and browser-based JavaScript template engine.
* [hmpl](https://hmpl-lang.dev) - Server-oriented customizable templating for JavaScript.
## Game Engines ## Game Engines
* [A-Frame](https://aframe.io) - Make WebVR. * [A-Frame](https://aframe.io) - Make WebVR.
@@ -352,6 +363,8 @@ A collection of awesome browser-side [JavaScript](https://developer.mozilla.org/
* [cola.js](https://ialab.it.monash.edu/webcola/) - library for arranging your HTML5 documents and diagrams using constraint-based optimization techniques * [cola.js](https://ialab.it.monash.edu/webcola/) - library for arranging your HTML5 documents and diagrams using constraint-based optimization techniques
* [jointjs](https://github.com/clientIO/joint) - Diagramming library to create static diagrams or fully interactive diagramming tools. * [jointjs](https://github.com/clientIO/joint) - Diagramming library to create static diagrams or fully interactive diagramming tools.
* [vizzu](https://github.com/vizzuhq/vizzu-lib) - Library for animated data visualizations and data stories. * [vizzu](https://github.com/vizzuhq/vizzu-lib) - Library for animated data visualizations and data stories.
* [G6](https://github.com/antvis/g6) - A graph visualization engine.
* [Infographic](https://github.com/antvis/Infographic) - A next-generation declarative infographic visualization engine.
There're also some great commercial libraries, like [amchart](https://www.amcharts.com/), [anychart](https://www.anychart.com/), [plotly](https://plotly.com/), and [lightning chart](https://www.arction.com/lightningchart-js/). There're also some great commercial libraries, like [amchart](https://www.amcharts.com/), [anychart](https://www.anychart.com/), [plotly](https://plotly.com/), and [lightning chart](https://www.arction.com/lightningchart-js/).
@@ -447,6 +460,7 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
* [MobX](https://github.com/mobxjs/mobx) - TFRP library for simple, scalable state management. * [MobX](https://github.com/mobxjs/mobx) - TFRP library for simple, scalable state management.
* [Cycle.js](https://cycle.js.org) - A functional and reactive JavaScript library for cleaner code. * [Cycle.js](https://cycle.js.org) - A functional and reactive JavaScript library for cleaner code.
* [concent](https://github.com/concentjs/concent) - Definitely the ❤️ simplest but ⚡️ strongest state management for react, it is predictable、progressive and efficient. * [concent](https://github.com/concentjs/concent) - Definitely the ❤️ simplest but ⚡️ strongest state management for react, it is predictable、progressive and efficient.
* [stunk](https://github.com/I-am-abdulazeez/stunk) A framework-agnostic state management library that keeps your apps state clean and simple. It uses a fine-grained state model, breaking state into independent, manageable chunks.
## Data Structure ## Data Structure
*Data structure libraries to build a more sophisticated application.* *Data structure libraries to build a more sophisticated application.*
@@ -576,6 +590,7 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
* [js-xss](https://github.com/leizongmin/js-xss) - Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist. * [js-xss](https://github.com/leizongmin/js-xss) - Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist.
* [xss-filters](https://github.com/yahoo/xss-filters) - Secure XSS Filters by Yahoo. * [xss-filters](https://github.com/yahoo/xss-filters) - Secure XSS Filters by Yahoo.
* [sanitize-html](https://github.com/apostrophecms/sanitize-html) - sanitize-html provides a simple HTML sanitizer with a clear API. * [sanitize-html](https://github.com/apostrophecms/sanitize-html) - sanitize-html provides a simple HTML sanitizer with a clear API.
* [pompelmi](https://github.com/pompelmi/pompelmi) - Fast file-upload malware scanning for Node.js.
## Log ## Log
@@ -590,6 +605,8 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
## RegExp ## RegExp
* [RegEx101](https://regex101.com/#javascript) - Online regex tester and debugger for JavaScript. Also supports Python, PHP and PCRE. * [RegEx101](https://regex101.com/#javascript) - Online regex tester and debugger for JavaScript. Also supports Python, PHP and PCRE.
* [RegExr](https://regexr.com/) - HTML/JS based tool for creating, testing, and learning about Regular Expressions. * [RegExr](https://regexr.com/) - HTML/JS based tool for creating, testing, and learning about Regular Expressions.
* [Regulex](https://jex.im/regulex/) - JavaScript Regular Expression Parser & Visualizer.
* [Regex-Vis](https://regex-vis.com/) - Regex visualizer & editor.
## Voice Command ## Voice Command
@@ -664,6 +681,7 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
* [Highlight.js](https://github.com/isagalaev/highlight.js) - JavaScript syntax highlighter. * [Highlight.js](https://github.com/isagalaev/highlight.js) - JavaScript syntax highlighter.
* [PrismJS](https://github.com/PrismJS/prism) - Lightweight, robust, elegant syntax highlighting. * [PrismJS](https://github.com/PrismJS/prism) - Lightweight, robust, elegant syntax highlighting.
* [shiki](https://github.com/shikijs/shiki) - Code highlighter powered by VS Code TextMate grammars. Accurate, themeable, works in Node or browser, great for JS and TS.
## Loading Status ## Loading Status
*Libraries for indicate load status.* *Libraries for indicate load status.*
@@ -817,7 +835,6 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
* [simptip](https://github.com/arashmanteghi/simptip) - A simple CSS tooltip made with Sass. * [simptip](https://github.com/arashmanteghi/simptip) - A simple CSS tooltip made with Sass.
* [toolbar](https://github.com/paulkinzett/toolbar) - A tooltip style toolbar jQuery plugin * [toolbar](https://github.com/paulkinzett/toolbar) - A tooltip style toolbar jQuery plugin
* [hint.css](https://github.com/chinchang/hint.css) - A tooltip library in CSS for your lovely websites. * [hint.css](https://github.com/chinchang/hint.css) - A tooltip library in CSS for your lovely websites.
* [tippy](https://github.com/atomiks/tippyjs) - A tooltip, popover, dropdown, and menu solution for the web.
## Modals and Popups ## Modals and Popups
@@ -1006,18 +1023,43 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
* [Docusaurus](https://github.com/facebook/docusaurus) - React-based static site generator by Facebook, ideal for content-centric websites. * [Docusaurus](https://github.com/facebook/docusaurus) - React-based static site generator by Facebook, ideal for content-centric websites.
* [Next.js](https://github.com/vercel/next.js) - React powered static site generator, and they say "All the tools you need to make the Web. Faster.". * [Next.js](https://github.com/vercel/next.js) - React powered static site generator, and they say "All the tools you need to make the Web. Faster.".
* [Lume](https://github.com/lumeland/lume) - Static site generator for Deno. * [Lume](https://github.com/lumeland/lume) - Static site generator for Deno.
* [Astro](https://github.com/withastro/astro) - The web framework for content-driven websites.
## SDK ## SDK
* [javascript-sdk-design](https://github.com/huei90/javascript-sdk-design) - JavaScript SDK design guide extracted from work and personal experience. * [javascript-sdk-design](https://github.com/huei90/javascript-sdk-design) - JavaScript SDK design guide extracted from work and personal experience.
* [Spotify SDK](https://github.com/loverajoel/spotify-sdk) - Entity oriented SDK to work with the Spotify Web API. * [Spotify SDK](https://github.com/loverajoel/spotify-sdk) - Entity oriented SDK to work with the Spotify Web API.
* [Square Node.js SDK](https://github.com/square/connect-nodejs-sdk/) - JavaScript client library for payments and other Square APIs. * [Square Node.js SDK](https://github.com/square/connect-nodejs-sdk/) - JavaScript client library for payments and other Square APIs.
* [OpenAI SDK](https://github.com/openai/openai-node) - Official JavaScript / TypeScript library for the OpenAI API.
* [Stripe Node.js SDK](https://github.com/stripe/stripe-node) - Stripe Node.js SDK lets you integrate payments, subscriptions, and billing into your JavaScript/TypeScript apps.
## Full Text Search ## Full Text Search
* [lunr](https://github.com/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. * [lunr](https://github.com/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.
* [flexsearch](https://github.com/nextapps-de/flexsearch) - It is a Next-Generation full text search library for Browser and Node.js. * [flexsearch](https://github.com/nextapps-de/flexsearch) - It is a Next-Generation full text search library for Browser and Node.js.
* [Elasticlunr](https://github.com/weixsong/elasticlunr.js) - This library is based on lunr.js, but more flexible and customized. * [Elasticlunr](https://github.com/weixsong/elasticlunr.js) - This library is based on lunr.js, but more flexible and customized.
## ORM
* [Prisma](https://github.com/prisma/prisma) Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB.
* [Sequelize](https://github.com/sequelize/sequelize) Feature-rich ORM for modern Node.js and TypeScript | PostgreSQL, MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB...
* [Mongoose](https://github.com/Automattic/mongoose) MongoDB object modeling designed to work in an asynchronous environment.
* [TypeORM](https://github.com/typeorm/typeorm) ORM for TypeScript and JavaScript, Works in NodeJS, Browser, Ionic, Cordova and Electron platforms.
* [Drizzle ORM](https://github.com/drizzle-team/drizzle-orm) Headless TypeScript ORM with a head. Runs on Node, Bun and Deno.
* [Kysely](https://github.com/kysely-org/kysely) A type-safe typescript SQL query builder.
* [Knex](https://github.com/knex/knex) A query builder for PostgreSQL, MySQL, CockroachDB, SQL Server, SQLite3 and Oracle, designed to be flexible, portable, and fun to use.
* [MikroORM](https://github.com/mikro-orm/mikro-orm) TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns.
* [Objection.js](https://github.com/Vincit/objection.js) A SQL-friendly ORM for Node.js built on top of Knex.js, with powerful relational support.
## WebSockets
* [Socket.io](https://github.com/socketio/socket.io) The most widely used WebSocket library for real-time applications. Supports auto-reconnection, rooms, and fallbacks (e.g., polling).
* [ws](https://github.com/websockets/ws) Simple to use, blazing fast and thoroughly tested WebSocket client and server for Node.js.
## Generative AI
* [KaibanJS](https://github.com/kaiban-ai/KaibanJS) - KaibanJS is an open-source framework browser-compatibility of orchestration of multi-agent ai systems using a Kanban-inspired architecture.
## Misc ## Misc