To begin your journey with an Elysia boilerplate, the easiest path is using the Bun CLI:

The is more than just a shortcut; it’s a gateway to building the next generation of the web. By combining the speed of Bun with the type-safety of Elysia, you are equipped to build APIs that are not only fast to execute but a joy to maintain.

: Ideal for edge computing and serverless environments. Look for templates that focus on "The Edge."

Here's an example of how to use the Elysia Boilerplate to build a simple RESTful API:

async fn user_list() -> Json<Vec<String>> let users = vec!["John".to_string(), "Jane".to_string()]; Json(users)

Menu