Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/analyzer/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,26 @@ Custom Elements Manifest is a file format that describes custom elements. This f

## Usage

### With npx

If you have `npx` installed use:

```bash copy
npx custom-elements-manifest analyze
```

or

```bash copy
npx cem analyze
```

### Without npx

If you don't have `npx`, you can add
the modules to your PATH and run it
with:

```bash copy
custom-elements-manifest analyze
```
Expand All @@ -34,6 +54,16 @@ or
cem analyze
```

If you don't want to add it to your
PATH, you can call it directly:


```bash copy
./node_modules/@custom-elements-manifest/analyzer/cem.js analyze
```



## Demo

<code-tabs default-tab="my-element.js">
Expand Down