Skip to content

Commit 2bc79e4

Browse files
author
Quinten Van Damme
committed
[experiment] Move to bun
1 parent 7a56a4a commit 2bc79e4

File tree

4 files changed

+5
-19781
lines changed

4 files changed

+5
-19781
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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/)
2423
1. Code editor of your choice (we recommend [VSCode](https://code.visualstudio.com/))
2524

2625
### 2. Install dependencies:
2726

2827
Install 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

4039
In 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
4544
After 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

5756
In a browser, load the page [localhost:3000](http://localhost:3000) and you should now be able to view the built blog.

bun.lockb

256 KB
Binary file not shown.

0 commit comments

Comments
 (0)