webapp/README.md
2024-02-15 14:46:11 +03:00

32 lines
432 B
Markdown

## How to start
```
npm install
npm start
```
## Useful commands
run checks with your favorite package manager: npm, yarn, pnpm or bun
```
npm run check
```
fix styles, imports, formatting and autofixable linting errors:
```
npm run fix
```
## Code generation
generate new SolidJS component:
```
npm run hygen component new NewComponentName
```
generate new SolidJS context:
```
npm run hygen context new NewContextName
```