2023-10-27 11:51:04 -04:00
|
|
|
# Scroll
|
|
|
|
|
2023-11-13 14:46:04 -05:00
|
|
|
Making a text editor in Typescript based on Kilo (Script + Kilo = Scroll). This
|
2023-11-16 11:10:33 -05:00
|
|
|
runs on [Bun](https://bun.sh/) (v1.0 or later) and [Deno](https://deno.com/)
|
|
|
|
(v1.37 or later).
|
2023-10-27 11:51:04 -04:00
|
|
|
|
2023-11-16 11:10:33 -05:00
|
|
|
To simplify running, I'm using [Just](https://github.com/casey/just).
|
2023-11-13 14:46:04 -05:00
|
|
|
|
2023-11-16 11:10:33 -05:00
|
|
|
- Bun: `just bun-run [filename]`
|
|
|
|
- Deno: `just deno-run [filename]`
|
2023-11-10 21:24:47 -05:00
|
|
|
|
|
|
|
## Development Notes
|
2023-11-13 14:46:04 -05:00
|
|
|
|
|
|
|
- Runtime differences are adapted into a common interface
|
|
|
|
- Runtime implementations are in the `src/deno` and `src/bun` folders
|
|
|
|
- The main implementation is in `src/common`
|