Compare commits

..

7 Commits

Author SHA1 Message Date
Nikita Korzhitskii
f4eb74c109 Merge 1b73c78a05 into 9f3d32b56a 2025-02-17 20:50:09 +00: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 26 additions and 9 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,7 @@ 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)
* [Misc](#misc) * [Misc](#misc)
* [Worth Reading](#worth-reading) * [Worth Reading](#worth-reading)
* [Other Awesome Lists](#other-awesome-lists) * [Other Awesome Lists](#other-awesome-lists)
@@ -143,6 +144,7 @@ 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.
## Testing Frameworks ## Testing Frameworks
@@ -169,6 +171,7 @@ 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
### Coverage ### Coverage
@@ -591,6 +594,7 @@ 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.
## Voice Command ## Voice Command
@@ -1006,6 +1010,7 @@ 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
@@ -1019,6 +1024,17 @@ There're also some great commercial libraries, like [amchart](https://www.amchar
* [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.
## Misc ## Misc
* [echo](https://github.com/toddmotto/echo) - Lazy-loading images with data-* attributes. * [echo](https://github.com/toddmotto/echo) - Lazy-loading images with data-* attributes.