File tree Expand file tree Collapse file tree 4 files changed +5
-19781
lines changed
Expand file tree Collapse file tree 4 files changed +5
-19781
lines changed Original file line number Diff line number Diff line change @@ -19,22 +19,21 @@ To develop and locally test the blog:
1919
2020### 1. Install development tools:
2121
22- 1 . [ Install Node.js and NPM] ( https://nodejs.org/en/download/package-manager/ )
23- 1 . [ Install PNPM] ( https://pnpm.io/installation ) (recommended opposed to NPM/Yarn)
22+ 1 . [ Install bun] ( https://bun.sh/ )
24231 . Code editor of your choice (we recommend [ VSCode] ( https://code.visualstudio.com/ ) )
2524
2625### 2. Install dependencies:
2726
2827Install node modules required to run the blog by running:
2928
3029```
31- pnpm i
30+ bun install
3231```
3332
3433### 3. Start the Next.js dev server:
3534
3635```
37- pnpm dev
36+ bun dev
3837```
3938
4039In a browser, load the page [ localhost:3000] ( http://localhost:3000 ) and you should now be able to test the blog while making your changes.
@@ -45,13 +44,13 @@ Next.js' dev server has hot reloading so no need to restart the instance when it
4544After making your changes and verifying it all works in the dev server, furtherly test them out by building the blog:
4645
4746```
48- pnpm build
47+ bun build
4948```
5049
5150### 5. Start:
5251
5352```
54- pnpm start
53+ bun start
5554```
5655
5756In a browser, load the page [ localhost:3000] ( http://localhost:3000 ) and you should now be able to view the built blog.
You can’t perform that action at this time.
0 commit comments