Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f3a3d87

Browse files
authoredJun 20, 2024··
Create README.md
1 parent 2341529 commit f3a3d87

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
 

‎README.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<div align="center">
2+
3+
# Custom Element Manifest Viewer (`cemv`)
4+
5+
A Custom Element Manifest Viewer component developed in web components
6+
7+
</div>
8+
9+
10+
## Installation
11+
12+
### Using `npm`
13+
14+
```bash
15+
npm i cemv
16+
```
17+
18+
### Using `pnpm`
19+
20+
```bash
21+
pnpm i cemv
22+
```
23+
24+
25+
### Using `yarn`
26+
27+
```bash
28+
yarn add cemv
29+
```
30+
31+
## Usage
32+
33+
First you need to mport `cemv` and your component in your code
34+
35+
36+
```js
37+
import "cemv"
38+
import "path/to/my-beautiful-component"
39+
```
40+
41+
Now you can see your configurable component preview!
42+
43+
```html
44+
<custom-element-menifest-viewer
45+
src="path/to/custom-element-manifest.json"
46+
tag-name="my-beautiful-component"
47+
></custom-element-menifest-viewer>
48+
```
49+
50+
## Related Links
51+
52+
- [Official Documentation]()
53+
- [Storybook](https://amir78729.github.io/custom-element-manifest-viewer/?path=/story/custom-element-manifest-viewer--custom-slots)

0 commit comments

Comments
 (0)
Please sign in to comment.