🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

cssdb

Package Overview
Dependencies
Maintainers
3
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cssdb

A list of CSS features and their positions in the process of becoming implemented web standards

8.3.0
Source
npm
Version published
Weekly downloads
8.2M
9.46%
Maintainers
3
Weekly downloads
 
Created

What is cssdb?

The cssdb npm package is a comprehensive database of CSS features and their stages in the CSS standardization process. It provides a structured list of current, upcoming, and experimental CSS features, making it a valuable resource for developers looking to stay up-to-date with the latest in CSS or to polyfill future CSS features. The package can be used to programmatically access information about CSS features, their specifications, and implementation status across different browsers.

What are cssdb's main functionalities?

Accessing CSS feature data

This code sample demonstrates how to import the cssdb package and retrieve an array of CSS features. Each feature in the array includes details such as the feature's name, description, stage in the standardization process, and links to the specification.

const cssdb = require('cssdb');
const features = cssdb();
console.log(features);

Filtering CSS features by stage

This example shows how to filter CSS features by their stage in the standardization process. In this case, it filters for features that are at stage 2, which represents a draft state where the feature is still under discussion.

const cssdb = require('cssdb');
const stage2Features = cssdb().filter(feature => feature.stage === 2);
console.log(stage2Features);

Other packages similar to cssdb

Keywords

css

FAQs

Package last updated on 27 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts