29 lines
386 B
Markdown
29 lines
386 B
Markdown
# word-counter
|
|
|
|
A simple svelte word counter
|
|
|
|

|
|
|
|
## Features
|
|
|
|
- Counts words
|
|
- Counts characters
|
|
- Looks cool
|
|
|
|
## Developing
|
|
|
|
```bash
|
|
# should work fine with normal npm too
|
|
pnpm install
|
|
pnpm run dev -- --open
|
|
```
|
|
|
|
## Building
|
|
|
|
To create a production version:
|
|
|
|
```bash
|
|
pnpm run build
|
|
```
|
|
|
|
You can preview the production build with `pnpm run preview`.
|