Posts by user130204 • 46 points
2 posts
-
1
votes1
answer48
viewsA: Node, server send information to page (bank password control, lab...)
Create a login for the monitor html monitor. socket.emit('login_monitor', {/*envie parâmetros se necessário*/}, function(){ console.log('logado como monitor'); }); server.js…
-
2
votes1
answer78
viewsA: How to work with asynchrony using Reactjs
Like you tried to use async and await? await is a reserved word that serves to expect a Promise be resolved, if you do not create Promises, there is no way to use await. async on the other hand…