Scaffolding Your First Elysia.js Project
With Bun:
bunx create-elysia@latestWith NPM:
npm create elysia@latestWith Yarn:
yarn create elysiaWith PNPM:
pnpm create elysiaWith Deno:
deno run -r=npm:create-elysia --allow-read --allow-write npm:create-elysiaThen follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line arguments. For example, to scaffold a Bun project, run:
yarn create elysia my-elysia-app --template bunCurrently supported template presets include:
bundenonodenode-tsplugin
You can use . for the project name to scaffold in the current directory.
This project was inspired by create-vite