https://github.com/wonderium/browser-feature-compatibility
This repository contains browser support details for HTML, CSS, JS and SVG features.
https://github.com/wonderium/browser-feature-compatibility
browsers compatability css data html js json releases support svg wonderium
Last synced: 5 months ago
JSON representation
This repository contains browser support details for HTML, CSS, JS and SVG features.
- Host: GitHub
- URL: https://github.com/wonderium/browser-feature-compatibility
- Owner: wonderium
- Created: 2024-07-24T12:36:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T11:47:24.000Z (over 1 year ago)
- Last Synced: 2025-10-10T19:09:17.419Z (8 months ago)
- Topics: browsers, compatability, css, data, html, js, json, releases, support, svg, wonderium
- Language: TypeScript
- Homepage: https://wonderium.dev
- Size: 32.2 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Browser Feature Compatibility // [WONDERIUM.DEV](https://wonderium.dev)
This project provides information on the addition of CSS, HTML, and SVG features in the most widely-used browsers, including the latest date of full stable support.
Data on dates is sourced from our package [`@wonderium/browser-releases`](https://github.com/wonderium/browser-releases).
## Installing
To install `@wonderium/browser-feature-compatibility` as a node package, use the npm install command:
```bash
npm install @wonderium/browser-feature-compatibility
```
## Examples
Versions, IDs and dates are provided for example purposes only.
```json
{
"data": [
{
"id": "some-feature-name",
"browsers": {
"chrome": 120,
"chrome_android": 93,
"edge": 93,
"firefox": 92,
"firefox_android": 92,
"safari": 17.2,
"safari_ios": 15
},
"latest_release_date": {
"year": 2023,
"month": 12,
"day": 18
}
}
]
}
```
We have also included some features that may not be supported in one of the listed browsers; therefore, these features do not have a last date but are marked as having limited availability.
```json
{
"data": [
{
"id": "another-feature-name",
"browsers": {
"chrome": 120,
"chrome_android": 93,
"edge": 93,
"firefox": null,
"firefox_android": null,
"safari": 17.2,
"safari_ios": 15
},
"latest_release_date": "Limited availability"
}
]
}
```
---
**Wonderium.dev** is an interactive learning platform for frontend developers.\
Our mission is to make web development studying more practical and understandable.