Questions tagged [serverside-javascript]

Server-side JavaScript is a set of techniques allowing to build JavaScript applications directly on the server.

Server-side JavaScript is a set of techniques allowing to build JavaScript applications directly on the server.

The most popular server-side JavaScript project is node.js, built on Chrome's JavaScript runtime, V8.

Other server-side JavaScript environments include Jaxer and Narwhal.

CommonJS project also provides a set of APIs which can be used outside the browser.

412 questions
0
votes
1 answer

How to read user input and convert it to a string

I am right now using the API of yodaspeak And I made some small changes on the codes. I want the user to input what words to change here is my node.js code var YodaSpeak = require('yoda-speak'); var yoda = new…
J.Zhou
  • 27
  • 1
  • 7
0
votes
1 answer

Accessing Session Variables at server side in asp.net

client side How can use this…
0
votes
5 answers

What is server-side Javascript and can it be used with ExtJS?

What is server-side Javascript? Can I replace PHP applications with applications written with server-side Javascript? If this is possible, does ExtJS support server-side Javascript?
Amit Sharma
  • 1,968
  • 5
  • 24
  • 35
0
votes
2 answers

Why is Array.push(element) not working sometimes?

I'm using node.js for a project, and I have this certain structure in my code which is causing problems. I have an array dateArr of sequential dates that contains 106 items. I have an array resultArr to hold resulting data. My code structure is like…
hologram
  • 533
  • 2
  • 5
  • 21
0
votes
1 answer

AEM ServerSide JavaScript host

I am trying to find the current host of my application in order to make some implementations, I went through different Java Backend objects (resource, request, resourcePage..) but all the properties that I have found give me relative paths. What is…
Helmut Granda
  • 4,565
  • 7
  • 35
  • 51
0
votes
1 answer

Server-centric application that can access client-side API?

I'm starting to plan a little project, the application I'm building needs to access the client-side JavaScript APIs to utilize things like the Web Speech API and the Camera API. I also noted that the application should be able to perform lengthy…
0
votes
0 answers

How to handle "Incomplete CSV file detected. Quotes does not match in pairs."?

I am using csvConvertor to convert csv file to json. when I import corrupt csv file.Server crash and shows throw ("Incomplete CSV file detected. Quotes does not match in pairs."); Here is my code exports.addAsset = function (req, res, next) { var…
0
votes
1 answer

Update Azure SQL database failure

I'm using Azure Mobile Services with an android application which I am trying to get working with a SQL database in Azure. Im using a server-side JavaScript function within Mobile Services to handle the insertion and update of data. Insertion of new…
0
votes
1 answer

updating an existing item in an azure mobile service database

I have a server side script which is trying to update an already existing row with new data that is calculated in the script. When there isn't a row there it adds to the table fine.However when I try to update the row I get an error in my…
0
votes
1 answer

Import server side javascript script library from external nsf in an XPage

I am trying to find a way to reference a server side jss file from an external nsf application (in the same or another domino server). I went to an xpage and then to its resources property. I selected to import a script library, then in the popup…
mike_x_
  • 1,900
  • 3
  • 35
  • 69
0
votes
1 answer

what is the difference between server side scripting and server side programming?

I was reading about Node.js and it is given that node.js is used for server side scripting. I work on ASP.Net and MVC where we have controllers/classes on server side on which we write our code. So my point here is what exactly is server side…
rohit singh
  • 1,239
  • 3
  • 15
  • 26
0
votes
2 answers

Passing values to server

I have been trying to find methods to pass variables from client to server What is making it difficult for me is: I have an unknown number of variables( The program that I am working on pass different number of variables/arrays to server side…
user3072635
  • 13
  • 1
  • 3
0
votes
0 answers

It's possibile to integrate Uncss on my own server?

It's possibile to integrate Uncss on my own server to load only the necessary css on every page ?
Salmen Bejaoui
  • 865
  • 1
  • 8
  • 22
0
votes
0 answers

Provably random number generator

I have to select a random number (between 3-300) that is provably not manipulating by me. I know I can use A= HMAC(B,C) but I want to know other methods. Are there any way different?
Lazy
  • 1,807
  • 4
  • 29
  • 49
0
votes
1 answer

Meteor - broken communication after ddp reconnect

I'm writing application consisting of two modules - client and server. Server publishes recordset and function, client subscribes on recordset and calls remote functions. Both modules run server side. Everything works as expected until the…