Chat application with video chat made using Node.js, Socket.io and WebRTC.
Run
npm install
Pulu uses MongoDB for users and rooms and for database connection create a file named config.js to config folder
// config.js
module.exports = {
user: 'userName',
pwd: 'password',
addr: 'addressToDatabase',
port: 'port',
db: 'databaseName',
};
To start server
npm start