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

ReplaceItemValue on XPage throwing error

Working on an XPage. Have a button that when clicked sets the value of the "b_BugNum" field to "2" using SSJS: document1.ReplaceItemValue("b_BugNum","2"); Keep receiving this error when run: [TypeError] Error calling method…
Derek
  • 16,181
  • 3
  • 27
  • 36
0
votes
1 answer

Calling server side javascript from the browser through internet

can anybody help me to call a server side javascript method from the client HTML page (browser) and get back the object from the server and process through internet. as like google maps api. ex as how we added: we added code to include server side…
sateesh
  • 83
  • 2
  • 10
0
votes
4 answers

Javascript server side?

Is it at all possible to use javascript server side and thus not shown in page source for certain core calculations? I'm developing a game, and one crucial part of the code needs to be only calculated server side then passed back to client. My…
Sir
  • 8,135
  • 17
  • 83
  • 146
0
votes
2 answers

How to apply Client-side validation by calling a server-side function in ASP.NET

I have an ASP.NET Web Forms application. I have a Form with various TextBoxand right now I have several asp:RequiredFieldValidator linked to them belonging to the same ValidationGroup. Now I have to apply to some TextBox an additional validation…
CiccioMiami
  • 8,028
  • 32
  • 90
  • 151
-1
votes
2 answers

Accessing server-side text file using JavaScript

I am making a website for students to give test... I will be also hosting it. But I want to make the code such that a particular student can give the test only once a day. So, I thought of placing a text (.txt) file on the server and read and write…
Prakhar Parikh
  • 177
  • 2
  • 13
-1
votes
1 answer

Process JavaScript on server

I use third-party JavaScript grid control. The matter is, it renders completely on client side and takes much time for this (creating DOM and corresponding JS objects). It can be normal for PC, but completely bad for mobile browsers like iPad's…
Sergey Metlov
  • 25,747
  • 28
  • 93
  • 153
-1
votes
3 answers

Can anyone tell me whats wrong here in this simple code?

(server-side) const express = require('express'); //instance of an app const app = express(); //middleware const bodyParser = require('body-parser'); app.use(express.urlencoded({extended: false})); app.use(express.json()); //core package to let the…
-1
votes
3 answers

how to run server side javascript in client browser

can you help me how to run server side java-script and how to configure server. please give me link or step by step process how to perform this action because no one are give the exact solution
-1
votes
1 answer

Stubbing built-in nodejs modules in Webpack

I'm running some nodejs code via server side rendering. Specifically, I'm using the mini_racer gem for Ruby. I'm using webpack to bundle my Javascript files. I'm running into an issue where one my dependencies makes use of built-in nodejs modules…
-1
votes
1 answer

Why We are using javascript in server-side?

Why we started using javascript in server-side ?? and which is the best javascript language for server-side ?? and why for e.g node.js
-1
votes
1 answer

Running Task In The Background

What is the technology which allows the web application to process the task in the background without holding user to wait until the task to finish. Example, as a user, 1. I want to submit a form which requires heavy processing. (Assume it…
-1
votes
2 answers

React component events not working on NodeJs+Express server

we are building a project using the MERN stack for the first time. It is a Stand-ups and Retros app. The problem is that our react component events are not working on the server side but work perfectly on the client side. Basically we are able to…
-1
votes
1 answer

react-router-rails server side renders the correct component, but bypasses the parent component

I'm trying to write an app in ruby on rails with server side rendering using flux, react-rails, react-router-rails and browserify, pretty much based in this tutorial and this repo. So far I've managed to write a simple two-level routeing…
-1
votes
1 answer

Run a JS function on Server every 5 minutes

I apologize if the way I'm asking this is why I haven't found an answer yet, but I've got a simple JS script that makes an AJAX request and gets data from an API and stores it. I'd like to put that script on a server and have it run every 5 minutes,…
Michael
  • 1
  • 2
-1
votes
1 answer

Developing Spring based Restful webservice for enterprise level application and mobile application

Need help in developing an Enterprise application which involves hundreds of thousands of notifications and calls to server. Client has mandated to use Java/Springs stack. It has 3 portals involving like mobile, Institutes and Admin which depends on…
1 2 3
27
28