Skip to content
Snippets Groups Projects
Commit a714e1e8 authored by KomaSans8's avatar KomaSans8
Browse files

Commit initial

parents
No related branches found
No related tags found
No related merge requests found
# deps
node_modules/
To install dependencies:
```sh
bun install
```
To run:
```sh
bun run dev
```
open http://localhost:3000
{
"name": "parkings",
"scripts": {
"dev": "bun run --hot src/index.ts"
},
"dependencies": {
"hono": "^4.6.6"
},
"devDependencies": {
"@types/bun": "latest"
}
}
\ No newline at end of file
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono!')
})
export default app
{
"compilerOptions": {
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment