# fork.baseline-status **Repository Path**: usaliva/fork.baseline-status ## Basic Information - **Project Name**: fork.baseline-status - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-08 - **Last Updated**: 2025-01-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # <baseline-status> web component A widget displaying Baseline status of a web feature based on https://github.com/web-platform-dx/web-features data baseline_widget_example ## Example Show Baseline status widget for [anchor-positioning](https://github.com/web-platform-dx/web-features/blob/main/features/anchor-positioning.yml): ``` ``` ## Usage *Option 1. Install and bundle with your application* Install ``` npm install baseline-status ``` See [docs](https://github.com/web-platform-dx/baseline-status/blob/main/docs/index.html) for example usage in HTML. See [rollup.config.js](https://github.com/web-platform-dx/baseline-status/blob/main/rollup.config.js) for an example of a bundler configuration. *Option 2: Precompiled from e.g. CDN.* This method is less optimal from performance perspective, as it can introduce multiple versions of Lit into your application since npm can't deduplicate the packages [Learn more](https://lit.dev/docs/tools/publishing/#don%27t-bundle-minify-or-optimize-modules). It can be used for quick testing and prototyping. ``` ``` ## Development To run locally: 1. Clone the repository. 2. Install dependencies: `npm install`. 3. Start dev server: `npm run serve`. 4. Open demo page at http://localhost:8000/docs. The local server uses wds [@web/dev-server](https://modern-web.dev/docs/dev-server/overview/) package. To enable web component related polyfills for legacy browsers, it uses `@web/dev-server-legacy` package. See `web-dev-server.config` file for the exact configuration.