A node-hill script that integrates PeerJS voice chat that has proximity volume.
npm install
First, insert your server port to host proximity-hill:
PORT=3000
Now, create a secure 64 character token using Node.js's built in crypto library.
require('crypto').randomBytes(64).toString('hex')
Then insert that token into your .env file just like this:
JWT_SECRET=super_secret_token
PORT=3000
To start your server, type in this command:
npm start