An open API service indexing awesome lists of open source software.

https://github.com/lissy93/framework-benchmarks

๐ŸŒˆ The same app built in 10 different frontend frameworks. For automated performance benchmarking
https://github.com/lissy93/framework-benchmarks

Last synced: 9 months ago
JSON representation

๐ŸŒˆ The same app built in 10 different frontend frameworks. For automated performance benchmarking

Awesome Lists containing this project

README

          

๐ŸŒˆ Framework Benchmarks



The same weather app built in 10 different frontend frameworks

For automated cross-framework web performance benchmarking




๐Ÿ“Š View Results โ€ข
๐ŸŽฏ Choose a Framework

### Intro
I've built the same weather app in 10 different frontend web frameworks.
Along with automated scripts to benchmark each of their performance, quality and capabilities.
To finally answer the age-old question: "Which is the _best_* frontend framework?"

So, without further ado, let's see how every framework weathers the storm! โ›ˆ๏ธ

#### Why?
1. To objectively compare frontend frameworks in an automated way
2. Because I have no life, and like building the same thing 10 times

#### What does _best_ mean?
- Smallest bundle size and best compression
- Fastest load time _(FCP, LCP, TTI, TTFB, etc)_
- Lowest resource consumption _(CPU & memory usage, etc)_
- Most maintainable _(least verbose, complex and repetitive code)_
- Quickest build time _(prod compile, dev server HMR latency, etc)_

#### Contents
- [Frameworks Covered](#frameworks-covered)
- [Usage Guide](#usage)
- [Project Outline](#project-outline)
- [Requirement Spec](#requirement-spec)
- [Benchmarking](#benchmarking)
- [Results](#results)
- [Real-world Applications](#side-note)
- [Status](#status)
- [Attributions and License](#attributions)

---

## Frameworks Covered















Click a framework to view info, test/lint/build/etc statuses, and to preview the demo app

---

## Usage

### Prerequisites

You'll need to ensure you've got
Git, Node (LTS or v22+), Python (3.10) and uv installed

### Setup

```bash
git clone git@github.com:lissy93/framework-benchmarks.git
cd framework-benchmarks
npm install
pip install -r scripts/requirements.txt
npm run setup
```

### Developing
Run `npm run dev:[app-name]`

Or, you can: `cd ./apps/[app-name]` then `npm i` and `npm run dev`

### Testing
All apps are tested with the same shared test suite, to ensure they all conform to the same requirements, and are fully functional.
Tests are dome with [Playwright](https://playwright.dev/docs/intro) and can be found in the [`tests/`](https://github.com/lissy93/framework-benchmarks/tree/main/tests) directory.

Either execute tests for all implementations with `npm test`, or just for a specific app with `npm run test:[app]` (e.g. `npm run test:react`).

You should also verify the lint checks pass, with `npm run lint` or `npm run lint:[app]`.

### Deploying
Build the app for production, with `npm run build:[app-name]`

Then upload `./apps/[app-name]/dist/` to any web server, CDN or static hosting provider

### Adding a Framework
1. Create app directory: `apps/your-framework/` with `package.json`, `vite.config.js`, and a `src/` dir
2. Build your app (ensuring it meets the [requirements spec](#requirement-spec) above)
3. Update [`frameworks.json`](https://github.com/lissy93/framework-benchmarks/blob/main/frameworks.json)
4. Add a test config file in `tests/config/`
6. Them run `node scripts/setup/generate-scripts.js` and `node scripts/setup/sync-assets.js`

---

## Project Outline

### Directory Structure

```
framework-benchmarks
โ”œโ”€โ”€ scripts # Scripts for managing the app (syncing assets, generating mocks, etc)
โ”œโ”€โ”€ assets # These are shared across all apps for consistency
โ”‚ โ”œโ”€โ”€ icons # SVG icons, used by all apps
โ”‚ โ”œโ”€โ”€ styles # CSS classes and variables, used by all apps
โ”‚ โ””โ”€โ”€ mocks # Mocked data, used by apps when running benchmarks
โ”œโ”€โ”€ tests # Test suit
โ””โ”€โ”€ apps # Directory for each app as a standalone project
โ”œโ”€โ”€ react/
โ”œโ”€โ”€ svelte/
โ”œโ”€โ”€ angular/
โ””โ”€โ”€ ...
```

### Scripts
The **[`scripts/`](https://github.com/lissy93/framework-benchmarks/tree/main/scripts)** directory contains
everything for managing the project (setup, testing, benchmarking, reporting, etc).
You can view a list of scripts by running `npm run help`.

### Shared Assets
To keep things uniform, all apps will share certain assets

- **[`tests/`](https://github.com/lissy93/framework-benchmarks/tree/main/tests)** - Same test suit used for all apps. To ensure each app conforms to the spec and is fully functional
- **[`assets/`](https://github.com/lissy93/framework-benchmarks/tree/main/assets)** - Same static assets (icons, fonts, styles, meta, etc)
- **[`assets/styles/`](https://github.com/lissy93/framework-benchmarks/tree/main/assets/styles)** - Same styles for all apps, and theming is done with CSS variables

### Third Parties
- **Dependencies**: Beyond their framework code, none of the apps use any additional dependencies, libraries or third-party "stuff"
- **Data**: Apps support using real weather data, from [open-meteo api](https://open-meteo.com). However, to keep tests fair, we use mocked data when running benchmarks.

### Commands

- `npm run setup` - Creates mock data, syncs assets, updates scripts and installs dependencies
- `npm run test` - Runs the test suite for all apps, or a specific app
- `npm run lint` - Runs the linter for all apps, or a specific app
- `npm run check` - Verifies the project is correctly setup and ready to go
- `npm run build` - Builds all apps, or a specific app for production
- `npm run start` - Starts the demo server, which serves up all built apps
- `npm run help` - Displays a list of all available commands

See the [`package.json`](https://github.com/lissy93/framework-benchmarks/blob/main/package.json) for all commands

Note that the project commands get generated automatically by the [`generate_scripts.py`](https://github.com/lissy93/framework-benchmarks/blob/main/scripts/setup/generate_scripts.py) script, based on the contents of [`frameworks.json`](https://github.com/lissy93/framework-benchmarks/blob/main/frameworks.json) and [`config.json`](https://github.com/lissy93/framework-benchmarks/blob/main/config.json).

---

## Requirement Spec

Every app is built with identical requirements (as validated by the shared test suite), and uses the same assets, styles, and data. The only difference is the framework used to build each.

### Technical Requirements
Why a weather app? Because it enables us to use all the critical features of any frontend framework, including:
- Binding user input and validation
- Fetching external data asynchronously
- Basic state management of components
- Handling fallback views (loading, errors)
- Using browser features (location, storage, etc)
- Logic blocks, for iterative content and conditionals
- Lifecycle methods (mounting, updating, unmounting)

### Functional Requirements
For our app to be somewhat complete and useful, it must do the following:
- On initial load, the user should see weather for their current GPS location
- The user should be able to search for a city, and view it's weather
- And the user's city should be stored in localstorage for next time
- The app should show a detailed view of the current weather
- And a summary 7-day forecast, where days can be expanded for more details

### Quality Requirements
There's certain standards every app should follow, and we want to use best practices, so:
- Theming: The app should support both light and dark mode, based on the user's preferences
- Internationalization: The copy should be extracted out of the code, so that it is translatable
- Accessibility: The app should meet AA standard of accessibility
- Mobile: The app should be fully responsive and optimized for mobile
- Performance: The app should be efficiently coded as best as the framework allows
- Testing: The app should meet 90% test coverage
- Error Handling: Errors should be handled, correctly surfaced, and tracible
- Quality: The code should be linted for consistent formatting
- Security: Inputs must be validated, data via HTTPS, and no known vulnerabilities
- SEO: Basic meta and og tags, SSR where possible,
- CI: Automated tests, lints and validation should ensure all changes are compliant

### Benchmarking Requirements
To compare the frameworks, we need to measure:
- Bundle size & output
- Load metrics: FCP, LCP, CLS, TTI, interaction latency
- Hydration/SSR cost, CPU & memory
- Cold vs. warm cache behaviour
- Memory usage: idle, post-flow, leak delta
- Build time & dev server HMR latency

### UI Requirements
The interface is simple, but must be identical arcorss all apps. As validated by the snapshots in the tests.

The screenshots will all look like this:

---

## Benchmarking

---

## Results

A summary of results can be viewed in [`summary.tsv`](https://github.com/Lissy93/framework-benchmarks/blob/main/results/summary.tsv).

Full, detailed results can be found in the [`results`](https://github.com/Lissy93/framework-benchmarks/tree/results) branch,
or attached as an artifact in the GitHub Actions benchmarking workflow runs.
For slightly more interactive reports, you can view the website at [framework-benchmarks.as93.net](https://framework-benchmarks.as93.net),
and also view a stats on a per-framework basis.

### Summary

The following charts show live data from the latest benchmark run. See the web version for interactive charts.


Performance Overview
Performance vs Bundle Size
Source Code Analysis
Bundle Size and Comparison
Lighthouse Performance Scores
Loading Performance
Project Size Distribution
Development Server Performance
Build Time Distribution

### Community Info

| Framework | Stars | Downloads | Size | Contributors | Age | Last updated | License |
|---|---|---|---|---|---|---|---|
| โš›๏ธ [**React**](https://github.com/facebook/react) | 239.4k | 194.4M | 1138.3 MB | 1.9k | 12.3y | 4 hours ago | MIT |
| ๐Ÿ…ฐ๏ธ [**Angular**](https://github.com/angular/angular) | 99k | 17.9M | 557.7 MB | 2.5k | 11.0y | 8 hours ago | MIT |
| ๐Ÿ”ฅ [**Svelte**](https://github.com/sveltejs/svelte) | 84.3k | 9.8M | 114.0 MB | 867 | 8.9y | 14 hours ago | MIT |
| ๐Ÿ’œ [**Preact**](https://github.com/preactjs/preact) | 38k | 37.6M | 17.8 MB | 364 | 10.1y | 2 days ago | MIT |
| ๐Ÿš€ [**Solid.js**](https://github.com/solidjs/solid) | 34.3k | 3.7M | 13.8 MB | 177 | 7.4y | 1 month ago | MIT |
| โšก [**Qwik**](https://github.com/QwikDev/qwik) | 21.7k | 104.2k | 59.8 MB | 616 | 4.6y | 18 hours ago | MIT |
| ๐Ÿ’š [**Vue 3**](https://github.com/vuejs/core) | 51.7k | 32.7M | 36.6 MB | 576 | 7.0y | 1 week ago | MIT |
| ๐Ÿ’™ [**jQuery**](https://github.com/jquery/jquery) | 59.6k | 67.6M | 34.1 MB | 344 | 19.5y | 1 week ago | MIT |
| ๐Ÿ”๏ธ [**Alpine.js**](https://github.com/alpinejs/alpine) | 30.4k | 1.3M | 8.8 MB | 295 | 5.9y | 3 days ago | MIT |
| ๐Ÿ”ฅ [**Lit**](https://github.com/lit/lit) | 20.4k | 15M | 59.1 MB | 206 | 8.3y | 1 day ago | BSD-3-Clause |
| ๐Ÿš [**VanJS**](https://github.com/vanjs-org/van) | 4.2k | 8.1k | 3.8 MB | 24 | 2.4y | 1 week ago | MIT |

---

## Side note
Different frameworks shine in different ways, and therefore have very different usecases.

So, in order to let each one shine, I have I have built real-world apps in each framework.

| Project | Framework | GitHub | Website |
|---|---|---|---|
| [ Web Check](https://github.com/Lissy93/web-check) - All-in-one OSINT tool for analyzing any site | [![React](https://img.shields.io/static/v1?label=&message=React&color=61DAFB&logo=react&logoColor=FFFFFF)](https://react.dev/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/web-check)](https://github.com/Lissy93/web-check) | [๐ŸŒ web-check.xyz](https://web-check.xyz) |
| [ Dashy](https://github.com/Lissy93/dashy) - Highly configurable self-hostable server dashboard | [![Vue.js](https://img.shields.io/static/v1?label=&message=Vue.js&color=4FC08D&logo=vuedotjs&logoColor=FFFFFF)](https://vuejs.org/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/dashy)](https://github.com/Lissy93/dashy) | [๐ŸŒ dashy.to](https://dashy.to) |
| [ Digital Defense](https://github.com/Lissy93/personal-security-checklist) - Interactive personal security checklist | [![Qwik](https://img.shields.io/static/v1?label=&message=Qwik&color=ac7ef4&logo=qwik&logoColor=FFFFFF)](https://qwik.builder.io/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/personal-security-checklist)](https://github.com/Lissy93/personal-security-checklist) | [๐ŸŒ digital-defense.io](https://digital-defense.io) |
| [ Portainer Templates](https://github.com/Lissy93/portainer-templates) - Automated Docker deployment specs | [![Svelte](https://img.shields.io/static/v1?label=&message=Svelte&color=ff3e00&logo=svelte&logoColor=FFFFFF)](https://svelte.dev/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/portainer-templates)](https://github.com/Lissy93/portainer-templates) | [๐ŸŒ portainer-templates](https://portainer-templates.as93.net/) |
| [ Domain Locker](https://github.com/Lissy93/domain-locker) - Domain name portfolio manager | [![Angular](https://img.shields.io/static/v1?label=&message=Angular&color=DD0031&logo=angular&logoColor=FFFFFF)](https://angular.io/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/domain-locker)](https://github.com/Lissy93/domain-locker) | [๐ŸŒ domain-locker.com](https://domain-locker.com) |
| [ Email Comparison](https://github.com/Lissy93/email-comparison) - Objective testing of mail providers | [![Lit](https://img.shields.io/static/v1?label=&message=Lit&color=00ffff&logo=lit&logoColor=FFFFFF)](https://lit.dev/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/email-comparison)](https://github.com/Lissy93/email-comparison) | [๐ŸŒ email-comparison](https://email-comparison.as93.net/) |
| [ Who Dat](https://github.com/Lissy93/who-dat) - WHOIS lookup for domain registration info | [![Alpine.js](https://img.shields.io/static/v1?label=&message=Alpine.js&color=8BC0D0&logo=alpinedotjs&logoColor=FFFFFF)](https://alpinejs.dev/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/who-dat)](https://github.com/Lissy93/who-dat) | [๐ŸŒ who-dat.as93.net](https://who-dat.as93.net) |
| [ Chief Snack Officer](https://github.com/Lissy93/cso) - Office snack management app | [![Solid](https://img.shields.io/static/v1?label=&message=Solid&color=2C4F7C&logo=solid&logoColor=FFFFFF)](https://www.solidjs.com/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/cso)](https://github.com/Lissy93/cso) | [๐ŸŒ N/A](https://lissy93.github.io/cso) |
| [ Awesome Privacy](https://github.com/Lissy93/awesome-privacy) - Curated directory of respectful apps | [![Astro](https://img.shields.io/static/v1?label=&message=Astro&color=E83CB9&logo=astro&logoColor=FFFFFF)](https://astro.build/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/awesome-privacy)](https://github.com/Lissy93/awesome-privacy) | [๐ŸŒ awesome-privacy.xyz](https://awesome-privacy.xyz/) |
| [ RAID Calculator](https://github.com/Lissy93/raid-calculator) - RAID array capacity and fault tolerance | [![Van.js](https://img.shields.io/static/v1?label=&message=Van.js&color=F44336&logo=vitess&logoColor=FFFFFF)](https://vanjs.org/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/raid-calculator)](https://github.com/Lissy93/raid-calculator) | [๐ŸŒ raid-calculator](https://raid-calculator.as93.net/) |
| [ Permissionator](https://github.com/Lissy93/permissionator) - Generating Linux file permissions | [![Marko](https://img.shields.io/static/v1?label=&message=Marko&color=2596BE&logo=marko&logoColor=FFFFFF)](https://markojs.com/) | [![GitHub Repo stars](https://img.shields.io/github/stars/Lissy93/permissionator)](https://github.com/Lissy93/permissionator) | [๐ŸŒ permissionator](https://permissionator.as93.net) |

---

## Status

Each app gets built and tested to ensure that it is functional, compliant with the spec, and (reasonably) well coded. Below is the current status of each, but for complete details you can see the [Workflow Logs](https://github.com/lissy93/framework-benchmarks/actions) via GitHub Actions.

| Workflow | Status |
|---|---|
| **Build**: Compiles each app for deployment | [![๐Ÿ”จ Build](https://github.com/Lissy93/framework-benchmarks/actions/workflows/build.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/build.yml) |
| **Test**: Runs all unit and integration tests | [![๐Ÿงช Test](https://github.com/Lissy93/framework-benchmarks/actions/workflows/test.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/test.yml) |
| **Lint**: Ensures lint/consistency checks pass | [![๐Ÿงผ Lint](https://github.com/Lissy93/framework-benchmarks/actions/workflows/lint.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/lint.yml) |
| **Benchmark**: Executes all app benchmarks | [![๐Ÿ“ˆ Benchmark](https://github.com/Lissy93/framework-benchmarks/actions/workflows/benchmark.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/benchmark.yml) |
| **Transform**: Formats and publishes results | [![๐Ÿ”„ Transform Results](https://github.com/Lissy93/framework-benchmarks/actions/workflows/transform-results.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/transform-results.yml) |
| **Docker**: Builds and publishes the image | [![๐Ÿณ Build & Publish Docker Image](https://github.com/Lissy93/framework-benchmarks/actions/workflows/docker.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/docker.yml) |
| **Docs**: Updates dynamic info in markdown | [![๐Ÿ“„ Update readme](https://github.com/Lissy93/framework-benchmarks/actions/workflows/update-docs.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/update-docs.yml) |
| **Mirror**: Syncs repo to Codeberg mirror | [![๐Ÿชž Mirror to Codeberg](https://github.com/Lissy93/framework-benchmarks/actions/workflows/mirror.yml/badge.svg)](https://github.com/Lissy93/framework-benchmarks/actions/workflows/mirror.yml) |

| App | Build | Test | Lint |
|---|---|---|---|
| React | ![React Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-react.svg) | ![React Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-react.svg) | ![React Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-react.svg) |
| Angular | ![Angular Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-angular.svg) | ![Angular Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-angular.svg) | ![Angular Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-angular.svg) |
| Svelte | ![Svelte Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-svelte.svg) | ![Svelte Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-svelte.svg) | ![Svelte Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-svelte.svg) |
| Preact | ![Preact Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-preact.svg) | ![Preact Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-preact.svg) | ![Preact Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-preact.svg) |
| Solid.js | ![Solid.js Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-solid.svg) | ![Solid.js Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-solid.svg) | ![Solid.js Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-solid.svg) |
| Qwik | ![Qwik Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-qwik.svg) | ![Qwik Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-qwik.svg) | ![Qwik Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-qwik.svg) |
| Vue 3 | ![Vue 3 Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-vue.svg) | ![Vue 3 Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-vue.svg) | ![Vue 3 Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-vue.svg) |
| jQuery | ![jQuery Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-jquery.svg) | ![jQuery Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-jquery.svg) | ![jQuery Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-jquery.svg) |
| Alpine.js | ![Alpine.js Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-alpine.svg) | ![Alpine.js Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-alpine.svg) | ![Alpine.js Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-alpine.svg) |
| Lit | ![Lit Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-lit.svg) | ![Lit Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-lit.svg) | ![Lit Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-lit.svg) |
| VanJS | ![VanJS Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-vanjs.svg) | ![VanJS Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-vanjs.svg) | ![VanJS Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-vanjs.svg) |
| Vanilla JavaScript | ![Vanilla JavaScript Build Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/build-vanilla.svg) | ![Vanilla JavaScript Test Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/test-vanilla.svg) | ![Vanilla JavaScript Lint Status](https://raw.githubusercontent.com/lissy93/framework-benchmarks/badges/lint-vanilla.svg) |

---

## Attributions

### Sponsors

![Sponsors](https://readme-contribs.as93.net/sponsors/lissy93?avatarSize=80&perRow=10)

### Contributors

![Contributors](https://readme-contribs.as93.net/contributors/lissy93/framework-benchmarks?avatarSize=80&perRow=10)

### Stargzers

![Stargazers](https://readme-contribs.as93.net/stargazers/lissy93/framework-benchmarks?perRow=16&limit=64)

---

## License

> _**[lissy93/framework-benchmarks](https://github.com/lissy93/framework-benchmarks)** is licensed under [MIT](https://github.com/lissy93/framework-benchmarks/blob/HEAD/LICENSE) ยฉ [Alicia Sykes](https://aliciasykes.com) 2025._

> For information, see TLDR Legal > MIT

Expand License

```
The MIT License (MIT)
Copyright (c) Alicia Sykes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sub-license, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included install
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANT ABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```


ยฉ Alicia Sykes 2025

Licensed under MIT



Thanks for visiting :)