A repository for the Roll your own JavaScript runtime blog post series:
- Roll your own JavaScript runtime
- Roll your own JavaScript runtime, pt. 2
- Roll your own JavaScript runtime, pt. 3
This repo has been updated to use snapshotting to speed up startup times.
Watch the corresponding video.
This repo has been updated to support loading JavaScript and TypeScript files.
$ cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.05s
Running `target/debug/runjs ./test.js`
[out]: "Hello" "runjs!"
[err]: "Boom!"
[err]: "Unable to read file" "./log.txt" {"code":"ENOENT"}
[out]: "Read from a file" "./log.txt" "contents:" "I can write to a file."
[out]: "Removing file" "./log.txt"
[out]: "File removed"