+
+
+```sh
+npm create hono@latest
+```
+
+
+
+
+```sh
+pnpm create hono@latest
+```
+
+
+
+
+```sh
+yarn create hono
+```
+
+
+
+
+For detailed instructions refer to the [Hono docs](https://hono.dev/docs/#quick-start).
+
diff --git a/src/snippets/get-started/bun/Step0.mdx b/src/snippets/get-started/bun/Step0.mdx
new file mode 100644
index 00000000..7a444ead
--- /dev/null
+++ b/src/snippets/get-started/bun/Step0.mdx
@@ -0,0 +1,9 @@
+{/* prettier-ignore */}
+
+Installing Bun:
+
+```sh
+npm install -g bun
+```
+For detailed instructions refer to the [Bun docs](https://bun.sh/docs/installation).
+
diff --git a/src/snippets/get-started/deno/Step0.mdx b/src/snippets/get-started/deno/Step0.mdx
new file mode 100644
index 00000000..4a9989e6
--- /dev/null
+++ b/src/snippets/get-started/deno/Step0.mdx
@@ -0,0 +1,16 @@
+{/* prettier-ignore */}
+
+Installing Deno:
+
+1. macOS and Linux
+```sh
+curl -fsSL https://deno.land/install.sh | sh
+```
+2. Windows
+```sh
+irm https://deno.land/install.ps1 | iex
+
+```
+
+For detailed instructions refer to the [Deno docs](https://docs.deno.com/runtime/getting_started/installation).
+
diff --git a/src/snippets/get-started/nest-js/Step0.mdx b/src/snippets/get-started/nest-js/Step0.mdx
new file mode 100644
index 00000000..0f1f51aa
--- /dev/null
+++ b/src/snippets/get-started/nest-js/Step0.mdx
@@ -0,0 +1,9 @@
+{/* prettier-ignore */}
+
+Installing Nest.js
+
+```sh
+npm i -g @nestjs/cli
+```
+For detailed instructions refer to the [Nest.js docs](https://docs.nestjs.com/).
+
diff --git a/src/snippets/get-started/next-js/Step0.mdx b/src/snippets/get-started/next-js/Step0.mdx
new file mode 100644
index 00000000..2870b8f6
--- /dev/null
+++ b/src/snippets/get-started/next-js/Step0.mdx
@@ -0,0 +1,8 @@
+{/* prettier-ignore */}
+
+To create a Next.js project:
+
+```sh
+npx create-next-app@latest
+```
+For detailed instructions refer to the [Next.js docs](https://nextjs.org/docs/app/getting-started/installation).
\ No newline at end of file
diff --git a/src/snippets/get-started/node-js-express/Step0.mdx b/src/snippets/get-started/node-js-express/Step0.mdx
new file mode 100644
index 00000000..70bbac5a
--- /dev/null
+++ b/src/snippets/get-started/node-js-express/Step0.mdx
@@ -0,0 +1,11 @@
+{/* prettier-ignore */}
+
+To install Express:
+
+```sh
+npm install express
+```
+For detailed instructions refer to [Express.js docs](https://expressjs.com/en/starter/installing.html).
+
+To install Node.js on your system follow the official [docs](https://nodejs.org/en/download/package-manager).
+
diff --git a/src/snippets/get-started/node-js-hono/Step0.mdx b/src/snippets/get-started/node-js-hono/Step0.mdx
new file mode 100644
index 00000000..dfc16c3d
--- /dev/null
+++ b/src/snippets/get-started/node-js-hono/Step0.mdx
@@ -0,0 +1,40 @@
+import SelectableContent from "@/components/SelectableContent";
+
+{/* prettier-ignore */}
+
+To install Hono:
+
+