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
2answers
47 views
+50
Installing Titanium ACS
We're trying to install Titaniums ACS via command line using
sudo npm -g install acs
however it keeps failing and we get the below error
npm http GET https://registry.npmjs.org/bindings
> ...
1
vote
0answers
63 views
+200
Accessing NPM repository through a proxy
I'm trying to access the npm repository from an intranet using a proxy.
Using the proxy (set in the environment variables HTTP_Proxy and HTTPS_Proxy) I'm able to access the repository without ssl ...
-3
votes
2answers
202 views
+50
How to setup a private dedicated Node.js Ubuntu Server?
I found an old PC and i want to use it as a dedicated Node.js test machine.
Basically i wanna write my apps on a win machine then copy them over samba to the node folder and launch them via ssh. ...
0
votes
3answers
58 views
+50
Is there any OAuth2 module for Node.js that offer access token validation without an extra server call?
I'm working on a project in Node.js , we need safe authorization for clients, As far as Facebook and Twitter go, we have to validate the token with their API
i Google it and found many examples but ...
1
vote
1answer
49 views
+50
socket.io, operations that takes advantage of storage backends?
I "found" that socket.io can be configured to use different storages for client storage logic, for example the redis store ,
my question is, what operations affect the use of that storage?
for ...
0
votes
0answers
120 views
+50
Safe authentication with node.js and session.socket.io?
I'm using the latest versions of node.js and session.socket.io and this is how I set the session (please note that I'm not using a HTTPS connection so no secure: true):
app.configure(function() {
...
1
vote
0answers
240 views
+50
Node js ECONNRESET
I m running an Express js application with socket.io for a chat
webapp and I get the following error randomly around 5 times during
24h. The node process is wrapped in forever and it restarts
...
0
votes
1answer
32 views
+150
Phantomjs dosen't render footers with a custom styles
I have the following example:
var page = require('webpage').create(),
system = require('system');
if (system.args.length < 3) {
console.log('Usage: printheaderfooter.js URL filename');
...
0
votes
1answer
28 views
+500
Odd error while sharing code with the client, through Jade template locals?
I'd like to share code with the client (functions, objects) as Jade template helpers available in every client template. For example, I want to use Moment.js both in the server (Node.js) and the ...