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
8 views
Extending Object with a Non-Enumerable Property
I was reading the readme for should.js and got to the "OMG IT EXTENDS OBJECT???!?!@" section which says
Yes, yes it does, with a single getter should,
and no it won't break your code,
...
1
vote
0answers
7 views
equivalent to runCommand()
I'd like to use full text search available in MongoDB 2.4.
Text search is available through runCommand function e.g. db.collection.runCommand( "text", { search: "keywords"}). So, I'm wondering ...
5
votes
5answers
2k views
Is using Node.js or Ringojs safe for live websites?
As stated in the title, I would like to know if it's safe to develop a website using one of the actuals "omg" platforms that are Node.js and Ringo.js at their actual version.
Also, I would like to ...
0
votes
1answer
5 views
Using DevTools Autosave in visual studio
I learnt about DevTools Autosave, and was able to use it with sublime text. That was cool, but i wanted to be able to use if in visual studio also. I finally got it and want to share how i did it... ...
1
vote
0answers
11 views
node-phantom createPage() never calls callback
I used nodejs with node-phantom module for some time. It worked fine.
Now I try it on another machine and same code example don't work:
var Scan=function(request,response)
{
var ...
2
votes
1answer
26 views
Node.js- A Django-esque Admin interface?
I'm seriously considering moving from Python to Node.js- the holy grail is within reach....but I do still love Django's Admin interface. Is anyone aware of a new framework that attempts to bring to ...
1
vote
1answer
7 views
When pushing local Node.js project Git repo that has node_modules up to Heroku, do the local node_modules overwrite those on Heroku?
I want to understand better the relationship between the node_modules that are part of my Node project on my local machine and those that are part of my app that resides on Heroku.
When I'm building ...
0
votes
1answer
15 views
Static : Creating a solution for document rating (Redis/Rails/NodeJS ?)
I'm building a static website with 10000+ pages generates from json file with middleman.
Each page is a document (pdf) with it's own id, summary and a download link.
I need to give anonymous users ...
0
votes
0answers
11 views
A mailing platform using Amazon SES and Node js
I have a case where I need to implement a mailing platform using amazon SES. I have decided to do this using Node.js to achieve the desired concurrency.
Within the node js application, I would fetch ...
0
votes
1answer
27 views
async module with c++ v8 for node js,error associated with the types in the structure
I am writing asynchronous module, but I can not pass an array structure. Please help. That's the error appears. How to avoid it?
error C2440: '=' : cannot convert from 'v8::Handle' to 'v8::Array *'
...
0
votes
0answers
8 views
nginx intermittent 502 Bad Gateway ( with node.js )
I can't resolve a new problem on my production server.
I actually got an intermittent nginx 502 Bad Gateway page on my website, at any page.
If i refresh the same page 10 times it will show up once ...
0
votes
0answers
11 views
Is there a node.js (server) compatible ZLIB.deflate implementation for the browser (client)
I want to deflate very big JSON objects client side (plus base64 encription) and then inflate them on a node.js server with
zlib.inflate( new Buffer( postData, 'base64'), function( err, result ) {
...
1
vote
0answers
7 views
Nodejs cron plugin vs running nodejs script from crontab
I'm building a tool where users can enter a number of items they are interested in. Every 24 hours I want to run a script that checks certain JSON responses from external sources for these topics.
My ...
0
votes
2answers
47 views
NodeJS - What does “socket hang up” actually mean?
I'm building a web scraper with Node and Cheerio, and for a certain website I'm getting the following error (it only happens on this one website, no others that I try to scrape.
It happens at a ...
0
votes
0answers
7 views
How to make nodeJS based irc client to reconnect?
I'm trying to make an nodejs based IRC web client (using https://github.com/martynsmith/node-irc and socket.io), and I have some problems.
When i start the server, and connect to it the first time, ...