Tagged Questions
0
votes
1answer
83 views
Displaying the content of a variable on webpage in node.js
I have a code as follow:
app.get('/list', function(req, res) {
serialport.list(function (err, ports) {
ports.forEach(function(port) {
var temp = port.manufacturer;
...