Tagged Questions
The serverside-javascript tag has no wiki summary.
70
votes
2answers
1k views
Why does the JavaScript need to start with “;”?
I have recently noticed that a lot of JavaScript files on the web starts with ; immediately following the comment section.
For example, this jQuery plugin's code starts with
/**
* jQuery.ScrollTo
...
56
votes
5answers
18k views
user authentication libraries for node.js?
Are there any existing user authentication libraries for node.js? In particular I'm looking for something that can do password authentication for a user (using a custom backend auth DB), and associate ...
34
votes
3answers
4k views
Node.js and CPU intensive requests
I've started tinkering with Node.js HTTP server and really like to write server side Javascript but something is keeping me from starting to use Node.js for my web application.
I understand the whole ...
27
votes
4answers
2k views
Why and When to use node js?
Sorry if i'm a bit ambiguous, but i'm trying to understand the real advantages of using node.js instead of other server-side language.
I'm a javascript enthusiast, so I'm probably going to play with ...
23
votes
6answers
5k views
Referencing Google's V8 engine from a .NET app
I'm building a .NET 3.5 application and have the need to evaluate JS code on the server - basically a user provided rule set that can work within a browser or on the server. Managed JS is not an ...
16
votes
5answers
2k views
Preventing XSS in Node.js / server side javascript
Any idea how one would go about preventing XSS attacks on a node.js app? Any libs out there that handle removing javascript in hrefs, onclick attributes,etc. from POSTed data?
I don't want to have to ...
15
votes
11answers
387 views
JavaScript pass scope to another function
Is it possible to somehow pass the scope of a function to another?
For example,
function a(){
var x = 5;
var obj = {..};
b(<my-scope>);
}
function b(){
//access x or obj....
}
I ...
15
votes
7answers
770 views
Are there any static Call-Graph and/or Control-Flow-Graph API for JavaScript?
Are there any Call-Graph and/or Control-Flow-Graph generators for JavaScript?
Call Graph - http://en.wikipedia.org/wiki/Call_graph
Control Flow Graph - ...
15
votes
6answers
661 views
What are some architectural reasons to use node.js aside from scalability?
The most common theme I read about why to use node.js is for high scalability due to it's evented, non-blocking I/O model. I'm trying to understand other non-scalability uses cases (and aside from ...
14
votes
5answers
7k views
How would MVC-like code work in Node.js?
I'm starting to get my head around node.js, and I'm trying to figure out how I would do normal MVC stuff. For example, here's a Django view that pulls two sets of records from the database, and sends ...
12
votes
4answers
1k views
How is a functional programming-based JavaScript app laid out?
I've been working with node.js for a while on a chat app (I know, very original, but I figured it'd be a good learning project). Underscore.js provides a lot of functional programming concepts which ...
11
votes
2answers
1k views
Node.js Best Practice Exception Handling
I am just trying out node.js few days ago. I realized that the Node is terminated whenever I have unhandled exception in my program. This is different than the normal server container that I have been ...
11
votes
5answers
3k views
Using a .NET DLL in Node.js / serverside javascript
I have spent a while playing with node.js and exploring related frameworks such as express and geddy... and I am very impressed, especially with the WebSockets implementation in socket.io.
I have a ...
11
votes
3answers
2k views
pros and cons of serverside javascript implementation?
I just started experimenting with Aptana Jaxer server side javascript engine for my next project. And i have few quesions about that
By using server side JS, can we implement the whole web ...
9
votes
7answers
380 views
why server side Javascript is not widely used? [closed]
we know JavaScript is one of the most popular and widely used language in front end.i wonder it is not widely used in back end ?
9
votes
3answers
269 views
Is it possible to execute server-side javascript from a *Python* Google App Engine instance?
A lot of questions have been asked and answered about running server-side javascript on Google App Engine, but all of the answers deal with Java instances in order to make use of Java-based JS ...
8
votes
3answers
371 views
Confusion about CPU intensive code in Node.js
A question regarding "everything runs in parallel except your code" from someone new to Node.js. This is an obviously artificial example, but let's say I want to create a math library containing a ...
8
votes
2answers
4k views
getting all filenames in a directory with node.js
I can't find where in the documentation I can get all filenames in a directory
Thanks for any help!
7
votes
2answers
884 views
Node.js performance & speed
I find myself often needing performance & speed references for friends who still don't believe a Javascript implementation can compete.
I have seen very impressive reports on this, with graphs ...
7
votes
3answers
2k views
node.js running alongside Apache PHP?
I am trying to get my head round node.js...
I am very happy with my LAMP set up as it currently fulfils my requirements. Although I want to add some real-time features into my PHP app. Such as ...
7
votes
3answers
3k views
Is it possible to develop a Google App Engine web app using Node.js or some other server side JavaScript approach?
I've been following the latest developments with server-side JavaScript - especially Node.js - and wondering if there is any possibility of using such an approach to develop a Google App Engine web ...
7
votes
3answers
630 views
Server side javascript on Google app engine
Is there any way to run a Javascript engine, like Spidermonkey, on Google App Engine? Spidermonkey is a C module, so obviously that wont work (GAE doesn't allow those types of modules)... is there ...
6
votes
2answers
3k views
how does setTimeout works on Node.JS?
how does setTimeout works on Node.JS?
I guess that once it's executed it's on the queue, but once it's in the queue who can assure that it will invoke exactly after X milliseconds?maybe there are ...
5
votes
2answers
226 views
JavaScript callbacks and functional programming
"Functional programming describes only the operations to be performed on the inputs to the programs, without use of temporary variables to store intermediate results."
The question is how to apply ...
5
votes
4answers
169 views
Prerequesite knowledge for working with node.js
Node.js seems to be getting a lot of column inches in the nerd blogs right now, and with a little bit of homework it's not hard to see why.
What would be good to know before diving into learning ...
5
votes
2answers
934 views
How to sync a javascript countdown with server time
I am building a site which has times and prices which tick down. The thing I am most concerned with is syncing time so that it is as accurate as possible across all clients.
Currently, I am sending a ...
5
votes
5answers
386 views
Does it make sense to build pure JavaScript based web applications (both client and server side)?
I've always considered JavaScript as a great addition (or rather, for the last couple of years, as a must have) to the client side of any web application. Even when I started to use Mootools, which ...
5
votes
3answers
676 views
jQuery templates on the server side
Has anyone tried to use jQuery templates (or any other JavaScript based templating) on the server side with something like env.js?
I'm considering attempting it to see what benefits could be gained ...
5
votes
4answers
4k views
a server side mustache.js example using node.js
I'm looking for an example using mustache.js with node.js
here is my example but it is not working. Mustache is undefined.
I'm using Mustache.js from the master branch.
var sys = require('sys');
...
5
votes
5answers
762 views
Server side Javascript best practices?
We have a CMS built on Java and it has Mozilla Rhino for the server side JS. At the moment the JS code base is small but growing. Before it is too late and code has become a horrible mess I want to ...
4
votes
3answers
120 views
Is there a way to test circular reference in JavaScript?
I'm making a game, and I've come across a problem... When I try to save, JSON fails and reports that circular reference is being made somewhere. I don't think it actually is, I can't see it, so is ...
4
votes
3answers
190 views
Interpreting JavaScript in PHP
I'd like to be able to run JavaScript and get the results with PHP and is wondering if there is a library for PHP that allows me to parse it out. My first thought was to use node.js, but since node.js ...
4
votes
5answers
269 views
Rendering javascript at the server side level. A good or bad idea?
Now a community wiki!
I want to make it clear first: This isn't a question in relation to server-side Javascript or running Javascript server side. This is a question regarding rendering of ...
4
votes
5answers
344 views
jQuery server side DOM manipulation
Does anyone know if it is possible to leverage the power of JQuery on the .Net serverside?
For example I have some HTML as a String in some code behind. Is there a way to execute JQuery on it?
I'm ...
4
votes
3answers
695 views
Best server-side javascript servers
I've been wondering to try out server-side javascript for a while. And I'm finding a good amount of servers, like:
Node.js Rhino SpiderMonkey among others.
Could anyone with experience on ...
3
votes
1answer
86 views
Server side javascript - General [closed]
Possible Duplicate:
What is node.js?
Usages of Node.js - What obstacles is it aiming to provide a ramp for?
What is the correct scenario to use server side javascript? like node.js
What ...
3
votes
1answer
65 views
How to convert a javascript animation to video on the server-side?
I am pretty sure this might not be an easy task, but here goes:
My team is creating a website where the user is able to create animations. We are using js+html. The thing is that now the client wants ...
3
votes
3answers
113 views
$target = $(target) in javascript\jQuery. Need explanation of syntax
The sample code mentioned below is a part of jQuery Countdown plugin by Keith Wood. Can some explain this
_attachCountdown: function(target, options) {
var $target = $(target);
if ...
3
votes
0answers
310 views
JSTUN vs PJNATH
I'm going to be writing my own STUN implementation in JavaScript (server-side with NodeJS), and I'm looking for a library to base my code on.
I have found both JSTUN and PJNATH, and both seem to be ...
3
votes
2answers
213 views
How to interact with Web server using JavaScript
I am trying to develop an Interactive chat application using AppWeb open source web Server.
I need to have some machanism that will enable Web server to send updated messages to client, so that when ...
3
votes
4answers
166 views
What are some recommended server-side javascript implementations?
Background:
We've written some client-side javascript that we now have to move to a server for performance reasons. What we'd like to do is move the current javascript right over to a server rather ...
2
votes
1answer
301 views
How to structure Models and Views in NodeJS?
I am writing a NodeJS based server- and client-side JavaScript application. I have Controllers, Models, Views and Presenters. The problem I am facing is that some parts of the code need to be only ...
2
votes
2answers
77 views
Can a callback function that belongs to a JavaScript object prototype access the object members?
How can callback function that belong to a JavaScript object prototype access the object members?
the callback can't be closure, everything must be defined as follows:
function Obji(param){
...
2
votes
1answer
138 views
Serving static HTML from CouchDB
I've got a CouchDB server up and running serving basic API requests. Overall it works well because users can GET/POST/PUT etc. to the host 'api.example.com'. The only issue is that if a user does a ...
2
votes
2answers
175 views
How can I add JS code that dynamically wrap any function invocation?
I had like to wrap any JavaScript invocation at runtime,
e.g. I had like to write to a log that an invocation of Func has been occurred.
This wrapping must work for any function even those function ...
2
votes
2answers
554 views
save incoming file from s3 w/nodejs & knox?
This is likely very basic because the docs leave it out... however, i'm a n00b and can't get it working... from knox docs:
"Below is an example GET request on the file we just shoved at s3, and ...
2
votes
2answers
3k views
Confirmation box from server side in asp.net
I want to show the confirmation box in asp.net from server side:
I want to call it from server side because I have to take the customer message from server side. I am using the below code
...
2
votes
2answers
449 views
response.write failure in Nodejs
i am trying to make a proxy server that gets a page from "www.xxx.com" for example, cache the response, and then send it to the requesting browser.
To do so, in the server i create an httpClient that ...
2
votes
2answers
617 views
Where does node.js sit in the client <--> web server flow?
With respect to how node.js fits in with clients and web servers, is my description below correct?
(A) are clients
(B) is node.js running on some web server
(C) are "services" hosting business ...
2
votes
4answers
138 views
Manipulating Javascript with Java
I have a complex, generated Javascript file (it's generated by the GWT compiler), and I need to be able to programmatically make changes to this and output a 'cleaned' version of the file. In ...