All Questions
8 questions
3
votes
1
answer
122
views
Node JS Express - Temperature records
Goal:
I have thought of a project to create and came up with this goal of: "To record temperatures for different Fridges or Freezers."
Current situation
I have a working method to get data ...
2
votes
0
answers
104
views
Create a stream request for Transaction history by client id on Braintree vault
I have been trying to create a transaction history request from Braintree using a client ID on Braintree vault, and it took far too long to figure out how, so here is the code on server that I ...
2
votes
1
answer
257
views
A neighborhood map of things to do and eat in Downtown Las Vegas
I have been coding in javascript for almost a year now, and I would like your input on what I could do better. Also, any tips for organizing code a little better? Do you use MVC for every project? ...
13
votes
1
answer
2k
views
Basic chat server and client using WebSocket
Based on Node.js in Action (Manning Publications) chapter 2 "Building a Multi-room Chat Application", I've taken the model they presented (which is all typical ES5 and jQuery) and completely ...
2
votes
1
answer
2k
views
Updating HTML table (Userlist) with Node.js
I currently have an HTML <Table> with all the socket.io-rooms. Client-side, the table gets fetched if you visit the page. If some room gets created or deleted,...
2
votes
1
answer
662
views
Node.js chat service
I've built a simple chat server/client on Node.js and socket.io that I would like reviewed. My main concern is making the chat.js (client) running as cleanly as possible (OO) and streamlining data ...
3
votes
1
answer
268
views
Getting the current chat room ID
I need roomId (an auto_increment primary key) to locate a specific room to update chat info. My way of doing it right now is ...
3
votes
1
answer
921
views
Memory leak in a scraper [closed]
This is a scraper written in CoffeeScript for NodeJS. It is run in an interval (set to 5 seconds here to dramtically show the leak). Somewhere this code leaks memory. I already tried nulling a few ...