Add elysia js skills

This commit is contained in:
Dominic Ferrando
2026-06-23 12:37:47 -04:00
parent 09d0739055
commit b4623a1224
54 changed files with 7116 additions and 0 deletions
@@ -0,0 +1,10 @@
import { Elysia, file } from 'elysia'
/**
* Example of handle single static file
*
* @see https://github.com/elysiajs/elysia-static
*/
new Elysia()
.get('/tako', file('./example/takodachi.png'))
.listen(3000)