Node.js is an event-based, asynchronous I/O framework that uses Google's V8 JavaScript engine. Node.js is commonly used for heavy client-server JavaScript applications.
0
votes
0answers
4 views
Handling asynchronous responses in node on server side
I am trying to build a simple node service that
Handles a GET request from a web client
Parses the params submitted
Uses those params to query another REST service asynchronously
Returns the REST ...
0
votes
0answers
7 views
Node.js user system
I'm currently working on a web application which deals with multiple users. Whilst it currently works, it relies on some real bad practises which I'll outline in a minute.
We're using MySQL as the ...
2
votes
0answers
10 views
Node JS, Highcharts Memory usage keeps climbing
I am looking after an app built with Node JS that's producing some interesting issues. It was originally running on Node JS v0.3.0 and I've since upgraded to v0.10.12. We're using Node JS to render ...
0
votes
0answers
11 views
Accessing one Node Server from another
I have 2 node servers running on different ports on a dedicated server on the web.
Is it possible to access one server (Websocket) from another server (Express.js being accessed via HTTP externally) ...
0
votes
1answer
8 views
AngularJS + TowerJS Tutorial/Ressources
I'm from .net environment and i want to learn this frameworks via tutorials.
Can you provide me some tutorials ?
Regards,
Guillaume
1
vote
0answers
11 views
the latest grunt-express does not work
I am trying to setup my environment to do some client side development. It is supposed to be nodejs based. I was recommended grunt-express as the component to configure the development server.
The ...
1
vote
1answer
20 views
How to combine js file in a custom way with grunt.js?
I want a token based search and replace functionality for grunt.
like
single:{
input:"./input.js",
output:"./output.js",
tokens:[{
...
0
votes
0answers
6 views
benefits of eval vs noeval in compoundjs
Does anyone have any experience using eval vs noeval generated controllers with compoundjs? I have been using mostly the standard generated controllers without noeval for starting points with compound ...
0
votes
0answers
13 views
Can WebSocket addresses carry parameters?
Is ws://myserver.com/path?param=1 a valid WebSocket address ?
The address http://myserver.com/path?param=1 (notice it's now http and not ws) works fine with wscat, but I can't get it working on the ...
0
votes
1answer
21 views
Getting retuned value from a JS / Node Module
I've created a simple module that posts some data to an external service which returns a message and some other results.
Am trying to test this with Mocha but I'm finding it hard to understand how to ...
1
vote
1answer
9 views
Building Node.js v0.10.12 on windows
I am trying to get Node.js to build on Windows. The process completes, seemingly okay, but does not generate node.lib.
Checking what was output it seems there is an issue right at the start (I ...
0
votes
0answers
4 views
KML generator/formatter for nodejs
I am storing GeoJSON data in mongodb through a nodejs endpoint. I would like to create an endpoint to transform the GeoJSON data into KML. I did a quick google and also checked the npm registry for ...
0
votes
1answer
17 views
Choosing module installation, javascript or native module
I have a module and I'd like to let the user decide which version he wants to use, the purely written in javascript or the native written in C (so he needs to compile it first).
The npm install ...
0
votes
0answers
25 views
Socket.IO not working in Chrome and Firefox on Windows
I have made a Facebook like chat server and client using node.js (0.10.10), socket.io (0.9.16) and Express (3.2.6). It works perfectly fine in all browsers including all versions of Internet Explorer, ...
1
vote
1answer
29 views
How synchronize get and save in crawler
This is shortcut code of web-crawler that runs on Crawler and it's work well. The problem is that the crawler returns 20 strings for half of a second and they are storing in MySQL much slower than the ...