this is a demo project. I'm testing the ability to make a nextjs-like /api/
route handler for building a backend system with js. the project is written in rust. using: deno_core
(abstraction over rusty_v8
) as a runtime for executing the JavaScript code users write, axum
to power the backend system, tokio
as an async runtime.
- simple working demo (GET Requests)
- add other HTTP methods: GET/POST/DELETE/PUT
- add caching for GET routes
- add dynamic routing
api/user/[id]
- add Rust Language
- use
MetaCall
instead of deno - add polyglot language support