31 lines
618 B
Markdown
31 lines
618 B
Markdown
# Basic Node
|
|
|
|
Basic server application built for Node.js with Express. It internally uses [livekit-server-sdk-js](https://docs.livekit.io/server-sdk-js/).
|
|
|
|
For further information, check the [tutorial documentation](https://livekit-tutorials.openvidu.io/tutorials/application-server/node/).
|
|
|
|
## Prerequisites
|
|
|
|
- [Node](https://nodejs.org/en/download)
|
|
|
|
## Run
|
|
|
|
1. Download repository
|
|
|
|
```bash
|
|
git clone https://github.com/OpenVidu/openvidu-livekit-tutorials.git
|
|
cd openvidu-livekit-tutorials/application-server/node
|
|
```
|
|
|
|
2. Install dependencies
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
3. Run the application
|
|
|
|
```bash
|
|
npm start
|
|
```
|