I know that firebase can be used with webrtc and I was easily able to go through creating a one to one video-audio calling webapp. I'm Trying to Create a One to several peer broadcasting system,(like twitch) and when i tried to know how it can be done, i found this, its pretty old and i cant figure out how i can implement it with firebase. If there are any npm packages which can help me achieve this or any guide I can refer to, it would be great if you could share them. I'm using ReactJS.
Via Active questions tagged javascript - Stack Overflow https://ift.tt/2FdjaAW
I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console...
Comments
Post a Comment