Server-side JavaScript is a set of techniques allowing to build JavaScript applications directly on the server.
-1
votes
0answers
15 views
Can you use Server-Side Javascript for Blackberry App Development?
I'm thinking about learning node.js, but I'm wondering if server-side javascript will work for app development?
0
votes
2answers
61 views
Which's the best DB(NoSQL or regular SQL) to choose using Node.js? [closed]
I've read that there are more information about using MongoDB with Node.js rather than MySQL and that is a concern for me, because I'm used to work with MySQL. In terms of development and performance ...
0
votes
0answers
14 views
What is the best approach for Campaign Monitor to displaying custom data sets
I'm currently working with the Campaign Monitor API which limits a max of 20 custom vars at 250 chars each.
I want to use there service as the white hat servers along with the analytics are worth ...
-1
votes
1answer
26 views
Setting DOCTYPE With Server-Side Javascript
I have a real quick question. I want to set the DOCTYPE for an HTML Page but I need to do it using Server Side Javascript. Every answer I see on this site says "I don't see why you want to do it" but ...
1
vote
1answer
118 views
how to detect that user's connection is lost or he closed the browser window in Nodejs socket.io
I have a chat application on Node.js and Socket.io, user can connect and disconnect with a button...
I am having a list of online users which is perfectly managed with the help of my defined events ...
0
votes
1answer
144 views
ASP.NET: Show jQuery dialog after button click
On my ASP.NET page I have a button. After click on the server side should be generate a div which represent the content for a jQuery dialog and the related JavaScript block. But neither the div nor ...
1
vote
1answer
50 views
node js in apache
I searched a lot and found out that node.js does not work on apache.
Is there any other alternatives for that?
Main idea behind this is use of server-side javascript on Apache.
Thanks.
0
votes
1answer
83 views
How to secure socket.io from code injection?
So i'm developing a socket.io real-time web-app.
The first concern of mine was "What if some evil-minded user tries to inject some code via Dev Tools or Firebug?" and i've got my answer here on SO. My ...
0
votes
1answer
160 views
How to write test driven programming in node.js?
Recently I got introduced to node.js and packages like express, mongodb and ejs. I have few questions :
As a learning purpose, I have created a github repo of user management which uses express, ...
0
votes
1answer
187 views
Using custom fabric.js classes in node.js
I'm using a couple of custom fabric.js classes in my app to render and encapsulate some additional data attributes as suggested here.
Now that I have the JSON data generated by these, I'd like to ...
0
votes
2answers
2k views
How to trigger server side button's click event after javascript confirm dialog returns true
I have an input as count named in a repeater with hdncount hidden input. And I have a server side button out of repeater. This script runs onblur event of count. I want to trigger server side button's ...
0
votes
1answer
253 views
Modifying response using server side scripts on Azure Mobile Services
I have a mobile app for which I am using Azure Mobile Services as a backend. I have a scenario in which I need to modify the elements that the client is requesting from the database. I need to ...
0
votes
2answers
41 views
Weird scope behavior in node or am I sleeping?
My js is as follows,
/*
* GET home page.
*/
var MongoClient = require('mongodb');
exports.index = function(req, res){
var studentObj = {};
...
2
votes
1answer
116 views
classic asp using javacript gives a 500 error
I can't figure out why I keep getting an HTTP/1.1 500 Server Error but only when using javascript as the server-side language. If I use VBScript it works just fine. I have other sites running on the ...
4
votes
3answers
530 views
Are there any ports or alternative implementations of the node.js platform with JavaScript engines other than V8?
node.js is an open source server-side JavaScript platform based on Google's V8 JavaScript engine. It has been rapidly gaining popularity and importance for couple of years now.
Now node.js is just a ...