37 lines
739 B
Markdown
37 lines
739 B
Markdown
# This is a testing place for different react projects
|
|
- Don't expect anything to work
|
|
- Don't expect git best practices to be followed
|
|
- Feel free to ask questions, if there is any of my code that doesn't make any sense
|
|
- I'll answer when I have time
|
|
- Answers may not be satisfying, or be good answers.
|
|
- I am not a developer, and have no clue what I'm doing. "borrow" the code on your own risk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# bun-react-template
|
|
|
|
Get bun:
|
|
[bun.com](https://bun.com)
|
|
|
|
To install dependencies:
|
|
|
|
```bash
|
|
bun install
|
|
```
|
|
|
|
To start a development server:
|
|
|
|
```bash
|
|
bun dev
|
|
```
|
|
|
|
To run for production:
|
|
|
|
```bash
|
|
bun start
|
|
```
|
|
|
|
This project was created using `bun init` in bun v1.2.19. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
|