/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-1-setup-b887180bcc0e-1-setup-s0481-c0000.md
1. Setup - hono-docs
1. Setup Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt 1 setup Summary First, create and move t...
1. Setup
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#1-setup
Summary
First, create and move to your project directory: sh mkdir my-app cd my-app Create the necessary files for the project. Make a package.json file with the following: ```json { "name": "my-app", "private": true, "scripts": { "dev"...
Content
First, create and move to your project directory:
mkdir my-app
cd my-appCreate the necessary files for the project. Make a package.json file with the following:
{
"name": "my-app",
"private": true,
"scripts": {
"dev": "vite dev"
},
"type": "module"
}Similarly, create a tsconfig.json file with the following:
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "WebWorker"],
"moduleResolution": "bundler"
},
"include": ["./"],
"exclude": ["node_modules"]
}Next, install the necessary modules.
::: code-group
npm i hono
npm i -D viteyarn add hono
yarn add -D vitepnpm add hono
pnpm add -D vitebun add hono
bun add -D vite:::