https://github.com/rayyannafees/bunslides
https://github.com/rayyannafees/bunslides
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rayyannafees/bunslides
- Owner: RayyanNafees
- Created: 2023-10-01T08:54:00.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-01T09:07:46.000Z (almost 3 years ago)
- Last Synced: 2025-03-12T04:29:48.755Z (over 1 year ago)
- Language: Astro
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bun slides
Astro project initialised with Bun
## Steps to reproduce in WSL Ubuntu
1. Update apt
```bash
sudo apt update
sudo apt-get update
```
2. Install Node v12
```bash
sudo apt-get install nodejs
sudo snap install node
```
3. Install nvm to update to Node v20
```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
nvm install 20
```
4. Install Bun runtime (supports Node v18+)
```bash
curl -sS https://bun.sh.install | bash
```
5. Regular Astro project setup but this time with Bun 🚀
```
mkdir astro
cd astro
bun create astro@latest -- --template minimal
```
## Problems
None so far :)