Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niksy/css-functions-list
List of standard and browser specific CSS functions.
https://github.com/niksy/css-functions-list
Last synced: about 2 months ago
JSON representation
List of standard and browser specific CSS functions.
- Host: GitHub
- URL: https://github.com/niksy/css-functions-list
- Owner: niksy
- License: mit
- Created: 2021-09-01T13:50:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T07:57:48.000Z (3 months ago)
- Last Synced: 2024-10-18T03:48:45.051Z (2 months ago)
- Language: JavaScript
- Size: 53.7 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# css-functions-list
[![Build Status][ci-img]][ci]
List of standard and
[browser specific](<(https://developer.mozilla.org/en-US/docs/Glossary/Vendor_Prefix)>)
CSS functions.Data sources are:
- MDN reference on
[CSS functions](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Functions)
- MDN reference on
[general CSS features](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference).
- MDN
[browser compatibility data for CSS functions](https://github.com/mdn/browser-compat-data/tree/main/css/types)
- Manually maintained experimental, legacy and removed functions## Install
```sh
npm install css-functions-list --save
```## Usage
```js
import { promises as fs } from 'fs';
import functionsListPath from 'css-functions-list';(async () => {
const functionsList = JSON.parse(
await fs.readFile(functionsListPath, 'utf8')
);
console.log(functionsList);
/* [
'abs',
'acos',
'annotation',
'asin',
'atan',
'atan2',
'attr',
'blur',
'brightness',
'calc'
// …
]; */
})();
```## API
### functionsListPath
Type: `string`
Path to CSS functions list JSON file.
## License
MIT © [Ivan Nikolić](http://ivannikolic.com)
[ci]: https://github.com/niksy/css-functions-list/actions?query=workflow%3ACI
[ci-img]: https://github.com/niksy/css-functions-list/workflows/CI/badge.svg?branch=master