Skip to content

milahu/incremental-compiler-js

Repository files navigation

incremental-compiler-js

incremental compiler in javascript

status

early draft

demo

incremental-compiler-js demo

documentation

see docs/

install

git clone --recurse-submodules https://github.com/milahu/incremental-compiler-js
cd incremental-compiler-js
pnpm install

offline demo

cd demo
pnpm install
npm run dev

goals

incremental compiler

create a prototype for an incremental compiler

example

input version 1

function App(props) {
  return (
    <div>hello</div>
  )
}

input version 2

function App(props) {
  return (
    <div>hello world</div>
  )
}

input difference

-    <div>hello</div>
+    <div>hello world</div>

related

  • nix-eval-js - nix interpreter in javascript, based on lezer-parser

keywords

  • incremental compiler in javascript
  • incremental compilation in javascript
  • chain of multiple compilers
  • compiler pipeline
  • compiler chain
  • low latency

About

incremental compiler in javascript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •