https://github.com/kulla/2025-09-06-editor-with-fp-api
https://github.com/kulla/2025-09-06-editor-with-fp-api
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kulla/2025-09-06-editor-with-fp-api
- Owner: kulla
- License: apache-2.0
- Created: 2025-09-06T11:38:03.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-06T20:24:42.000Z (8 months ago)
- Last Synced: 2025-10-06T22:26:44.446Z (8 months ago)
- Language: TypeScript
- Size: 124 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Editor prototype
## Setup
1. Clone the repository
2. Install the dependencies via `bun install`
## Known limitations
* Index in onCommand functions cannot be narrowed down since it is used as an argument and thus the generic becomes contravariant.
## Get started
Start the dev server:
```bash
bun dev
```
Build the app for production:
```bash
bun run build
```
Preview the production build locally:
```bash
bun preview
```
## Maintenance
Update dependencies:
```bash
bun update
```