updated examples package.json's and README.md's

This commit is contained in:
dswbx
2025-02-18 13:19:35 +01:00
parent 7994eabe7d
commit 964bacd824
8 changed files with 163 additions and 65 deletions

View File

@@ -1,15 +1,28 @@
# bun
# bknd starter: Bun
A minimal Bun project with bknd integration.
To install dependencies:
## Project Structure
```bash
bun install
Inside of your Bun project, you'll see the following folders and files:
```text
/
├── index.ts
├── minimal.ts
└── package.json
```
To run:
To update `bknd` config, check `index.ts`.
```bash
bun run index.ts
```
## Commands
This project was created using `bun init` in bun v1.1.34. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
All commands are run from the root of the project, from a terminal:
| Command | Action |
|:--------------------------|:--------------------------------------------|
| `bun install` | Installs dependencies |
| `bun run dev` | Starts local dev server at `localhost:3000` |
## Want to learn more?
Feel free to check [our documentation](https://docs.bknd.io/integration/bun) or jump into our [Discord server](https://discord.gg/952SFk8Tb8).