https://github.com/bogeychan/create-elysia
Scaffolding Your First Elysia.js Project
https://github.com/bogeychan/create-elysia
create-elysia elysia
Last synced: 2 months ago
JSON representation
Scaffolding Your First Elysia.js Project
- Host: GitHub
- URL: https://github.com/bogeychan/create-elysia
- Owner: bogeychan
- License: mit
- Created: 2023-04-24T10:24:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-26T18:36:58.000Z (over 1 year ago)
- Last Synced: 2024-11-28T09:01:32.688Z (10 months ago)
- Topics: create-elysia, elysia
- Language: JavaScript
- Homepage: https://npmjs.com/package/create-elysia
- Size: 93.8 KB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# create-elysia
## Scaffolding Your First [Elysia.js](https://elysiajs.com) Project
With Bun:
```bash
bunx create-elysia@latest
```With NPM:
```bash
npm create elysia@latest
```With Yarn:
```bash
yarn create elysia
```With PNPM:
```bash
pnpm create elysia
```With Deno:
```bash
deno run -r=npm:create-elysia --allow-read --allow-write npm:create-elysia
```Then 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:
```bash
yarn create elysia my-elysia-app --template bun
```Currently supported template presets include:
- `bun`
- `deno`
- `node`
- `node-ts`
- `plugin`You can use `.` for the project name to scaffold in the current directory.
## Credits ❤️
This project was inspired by [create-vite](https://www.npmjs.com/package/create-vite)
## License
[MIT](LICENSE)