Posts by Andre Neto • 79 points
10 posts
-
0
votes1
answer28
viewsQ: Mongodb on air at AWS
I need a help, I did not find anything practical and exact in google, I have a backend with Node and using Mongoose, and I can run site quietly, because in CMD I run the command 'mongod', and my…
-
1
votes1
answer76
viewsQ: Folder Size - File System
I’m trying to get the size of the folder that is my project, the folder is called Testes, and in my file server.js i am using the following method: fs.stat('/Testes', function(err,stats){ if(err)…
-
1
votes0
answers212
viewsQ: Sending error - Nodemailer
I configured my nodemailer as follows let transporter = nodemailer.createTransport({ port: 465, host: 'host do cpanel', auth: { user: '[email protected]', pass: 'minhaSenha' } }); and he makes a…
-
1
votes3
answers853
viewsQ: Nodejs Forever Not for
I have a Ubuntu server, and I used the command forever restart but I forgot that I had not installed a Node-module, that is, when I did the command forever list appeared he stopped, then I used the…
-
0
votes0
answers191
viewsQ: Callback is not defined - Node js
I’m making a connection with the Gento, and the connection works perfectly, but when I do the function I get the message 'Referenceerror: callback is not defined' Follows the Code,…
-
1
votes2
answers1081
viewsQ: Pick Selected Element from UL
I need to get the Element Name only from the Element I clicked on, but when I look for the textContent all of the li <li class="folder folder-open Selected"> TesteNfseSPO <ul> <li…
-
0
votes1
answer142
viewsQ: Use of the Signalir
I am developing a chat in Signalir, and I can only send messages to all logged in Users, using this way: public void Send(string name, string message) { Clients.All.broadcastMessage(name, message);…
-
1
votes0
answers69
viewsQ: Sockjs Websocket
I’m trying to use the Sockjs, and I put in the HEAD of my index the <script src="//cdn.jsdelivr.net/sockjs/1/sockjs.min.js"></script> and javascript: var wsUrl = 'ws://' +…
-
1
votes0
answers98
viewsQ: Notification by Browser
Hello my name is André Neto, I am developing a software, and within it there is a central mail, where the user can send an email from within the system and I store this sending data. Now the…
-
1
votes1
answer498
viewsQ: Save Game Data in Html5 and Javascript
I would like to know how I can make a "cache" of a project of mine, because the game works normally, but when updates the page, all progress is lost, I would like to know how I can make this "cache"…