Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abates/zone-card
A HomeAssistant Lovelace mashup of mini-media-player cards for zones and sources
https://github.com/abates/zone-card
Last synced: about 7 hours ago
JSON representation
A HomeAssistant Lovelace mashup of mini-media-player cards for zones and sources
- Host: GitHub
- URL: https://github.com/abates/zone-card
- Owner: abates
- License: mit
- Created: 2020-07-21T21:25:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T20:20:11.000Z (almost 2 years ago)
- Last Synced: 2023-03-11T09:57:31.321Z (over 1 year ago)
- Language: JavaScript
- Size: 782 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# \
This webcomponent follows the [open-wc](https://github.com/open-wc/open-wc) recommendation.
## Installation
```bash
npm i zone-card
```## Usage
```htmlimport 'zone-card/zone-card.js';
```
## Linting with ESLint, Prettier, and Types
To scan the project for linting errors, run
```bash
npm run lint
```You can lint with ESLint and Prettier individually as well
```bash
npm run lint:eslint
```
```bash
npm run lint:prettier
```To automatically fix many linting errors, run
```bash
npm run format
```You can format using ESLint and Prettier individually as well
```bash
npm run format:eslint
```
```bash
npm run format:prettier
```## Tooling configs
For most of the tools, the configuration is in the `package.json` to reduce the amount of files in your project.
If you customize the configuration a lot, you can consider moving them to individual files.
## Local Demo with `es-dev-server`
```bash
npm start
```
To run a local development server that serves the basic demo located in `demo/index.html`