This website uses Browserslist and Can I Use to display the compatible browsers for a browsers query.
You can use the site API in your own applications.
https://browsersl.ist/api/browsers?q=defaults®ion=alt-ww
q
— query. Examples are available on the website or in the browserslist repository.defaults
by default.region
— region code. List of all region codes can be found at caniuse-lite/data/regions.alt-ww
by default.
// https://browsersl.ist/api/browsers?q=>defaults+and+supports+es6-module®ion=alt-as
{
"query": ">0.3%",
"lint": [
{
"id": "countryWasIgnored",
"message": "Less than 80% coverage in `China`, `Nigeria`, `Tanzania`, `Ghana`, and `Uganda` regions"
}
],
"region": "alt-as",
"coverage": 88.44,
"versions": {
"browserslist": "4.21.3",
"caniuse": "1.0.30001381"
},
"updated": 1675156330646,
"browsers": [
{
"id": "chrome",
"name": "Chrome",
"coverage": 17.06,
"versions": {
"102": 0.72,
"103": 16.32
}
}
...
]
}
If you send a request with an error, you will receive error message with the status 400.
// https://browsersl.ist/api/browsers?q=>0%®ion=XX
{
"message": "Unknown region name `XX`."
}
We recommend to install Prettier and EditorConfig plugins to your text editor.
To run a local copy for development:
-
Install correct versions of Node.js and pnpm. There are two ways:
-
With
asdf
version manager:asdf plugin-add nodejs https://github.com/asdf-vm/asdf-nodejs.git asdf plugin-add pnpm https://github.com/jonathanmorley/asdf-pnpm.git asdf install
-
Manually by check versions in
.tool-versions
.
-
-
Install dependencies:
pnpm install
-
Run local server with client-side watcher.
pnpm start
To run local server in production mode:
pnpm ssdeploy run