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

28
examples/node/README.md Normal file
View File

@@ -0,0 +1,28 @@
# bknd starter: Node.js
A minimal Node.js project with bknd integration.
## Project Structure
Inside of your Node.js project, you'll see the following folders and files:
```text
/
├── index.js
└── package.json
```
To update `bknd` config, check `index.js`.
## Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
|:----------------|:---------------------------------------------------------|
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server with `watch` at `localhost:3000` |
| `npm run start` | Starts local dev server at `localhost:3000` |
## Want to learn more?
Feel free to check [our documentation](https://docs.bknd.io/integration/node) or jump into our [Discord server](https://discord.gg/952SFk8Tb8).