-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add instructions for creating a new project. (#318)
- Loading branch information
1 parent
bcdc38c
commit 38483dc
Showing
11 changed files
with
181 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import SelectableContent from "@/components/SelectableContent"; | ||
|
||
{/* prettier-ignore */} | ||
|
||
Installing Bun | ||
|
||
```sh | ||
npm install -g bun | ||
``` | ||
For detailed instructions refer to the [Bun docs](https://bun.sh/docs/installation). | ||
|
||
To install Hono: | ||
|
||
<SelectableContent client:load syncKey="packageManager" frameworkSwitcher> | ||
<div slot="npm" slotIdx="1"> | ||
|
||
```sh | ||
npm create hono@latest | ||
``` | ||
|
||
</div> | ||
<div slot="pnpm" slotIdx="2"> | ||
|
||
```sh | ||
pnpm create hono@latest | ||
``` | ||
|
||
</div> | ||
<div slot="yarn" slotIdx="3"> | ||
|
||
```sh | ||
yarn create hono | ||
``` | ||
|
||
</div> | ||
</SelectableContent> | ||
|
||
For detailed instructions refer to the [Hono docs](https://hono.dev/docs/#quick-start). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import SelectableContent from "@/components/SelectableContent"; | ||
|
||
{/* prettier-ignore */} | ||
|
||
To install Hono: | ||
|
||
<SelectableContent client:load syncKey="packageManager" frameworkSwitcher> | ||
<div slot="npm" slotIdx="1"> | ||
|
||
```sh | ||
npm create hono@latest | ||
``` | ||
|
||
</div> | ||
<div slot="pnpm" slotIdx="2"> | ||
|
||
```sh | ||
pnpm create hono@latest | ||
``` | ||
|
||
</div> | ||
<div slot="yarn" slotIdx="3"> | ||
|
||
```sh | ||
yarn create hono | ||
``` | ||
|
||
</div> | ||
</SelectableContent> | ||
|
||
For detailed instructions refer to the [Hono docs](https://hono.dev/docs/#quick-start). | ||
|
||
To install Node.js on your system follow the official [docs](https://nodejs.org/en/download/package-manager). | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{/* prettier-ignore */} | ||
|
||
To install Node.js on your system follow the official [docs](https://nodejs.org/en/download/package-manager). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{/* prettier-ignore */} | ||
|
||
To create a Remix project: | ||
|
||
```sh | ||
npx create-remix@latest | ||
``` | ||
For detailed instructions refer to the [Remix docs](https://remix.run/docs/en/main/start/quickstart#installation). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{/* prettier-ignore */} | ||
|
||
To create a SvelteKit project: | ||
|
||
```sh | ||
npx sv create my-app | ||
``` | ||
For detailed instructions refer to the [SvelteKit docs](https://svelte.dev/docs/kit/creating-a-project). | ||
|