The Button Click Request is receiving: {'QTD1LED, ON': ''}, but would like to receive only {QTD1LED, ON}. Where do I have the change in my code?
var http = require("http").createServer(servidor);
var express = require('express');
var io = requ...
Well, I'll try to explain the situation:
I'm studying NodeJS and for that I decided to rewrite the server-side code of an application that was originally written in C / C ++, and that server receives packets in hexadecimal from the client app...
Hello! I'm having trouble using the GET / Test command in this case, in which it does not return any information.
Node.js Code
var http = require("http").createServer(servidor);
var express = require('express');
var io = require("socket...
I am new to Node.js, and I have developed a server using express to send files between computers on the same network, but I can only start the server on the computer that will receive the file if it has the Node installed. I would like to know i...
Do you have access to my free account on the hosting server XPG, through Javascript?
I wonder if it's possible to just connect to Javascript with an FTP server ( ftp://ftp.xpg.com.br ), to "Send" files.
I need some way to select the loc...
I need to perform a find on two collections in mongodb using aggregation and put the results into a single array.
I'm trying to do this, but it does not work.
I have the collection Visits and Opportunities and want to summarize the amount...
I'm trying to make a "Hello World" in Cordova, it's a screen with a button that activates the camera, it is not necessary to do anything else, just turn on the camera.
the steps I followed.
cordova create hello com.bruno.hello hello
cd hel...
I'm trying to start the socket.io service, but the error appears
Can not GET /
My server.js is like this
var socket = require( './node_modules/socket.io' );
var express = require('./node_modules/express');
var app = express();
var serv...