All Questions
Tagged with server-side-scripting javascript
38 questions
3
votes
1
answer
3k
views
How to run server-side scripts in NextJs?
i am new to NextJs and I'm tryin to make an app that every few hours make some requests to a database to update the data, but i can't figure out how to do it.
The only place where i can do it is ...
1
vote
1
answer
1k
views
fetch() API with NodeJS server makes req.redirect() not working [duplicate]
I have a login/signup system using nodeJS. now the problem is when i use fetch() method on the client javascript side the res.redirect() method does not work. what could be the problem with fetch() ...
1
vote
1
answer
3k
views
ServiceNow : Redirecting user to a different module with UI Action
TLDR; Is there a way to directly redirect to a module while running the serverside code? Taking into account the modules filter settings etc.
Hello, quite new to SN so sorry for the newbi question :)
...
0
votes
0
answers
43
views
If I write an application with MeteorJS, will I expose my code to the viewers visiting my page?
I was just wondering if meteorJS exposes the code to the viewer on the browser like the javascript or can one write a pure server side program with it like in Python and render only the result in the ...
0
votes
1
answer
568
views
How to manipulate a record in beforeLoad functioni on NetSuite?
Currently, we have a SO Order(SO), after clicking the "Drop Ship" button, the page will direct to another page to create a Pruchase Order(PO).
Becasue if the values are grabbed in the pageInit stage, ...
-3
votes
1
answer
480
views
Can AJAX and JavaScript be used purely for server side scripting?
I am just learning php. My approach to learning is that I start analysing the code in a language I am more familiar with.
Hence, I am trying to replicate a PHP dashboard with PHP features like role ...
-2
votes
2
answers
401
views
hard time understanding server side script
I learned that php and node.js are both server side script.
I'm having hard time understanding the connection between node.js and running javascript on web browser. So can we not access files and ...
0
votes
1
answer
101
views
Node js - Synchronous execution of Websocket's object functions
I have the following like functionality
//Have to connect to a websocket
var websocket = new WebSocket(wsUri);
var channel = new WebChannel(websocket);
The webchannel returns an object that has ...
0
votes
1
answer
45
views
Node js - Synchronous execution of functions through loop
I have a code like the following
function getData()
{
for(var i=0; i<someLength; i++)
{
if(i===0)
{
response = callApi(someValue[i]);
}
else if(i===1)
...
2
votes
2
answers
1k
views
Node.js or Express.js is server side language like PHP or not
Sorry, My question sounds dumb but i am bit confused about Node.js .I am a PHP developer and i know that php has operations and functions that execute on server and return result to client screen.
I ...
0
votes
1
answer
420
views
Changing textures of objects in 3d model and rendering on server side?
I have a 3D model (.max file) made in Autodesk 3ds max and I want to change textures of different objects by selecting from a list of textures on my website and get the whole scene rendered.
For ...
0
votes
0
answers
518
views
Limit number of users from visiting particular page
When any user clicks on the link then they redirect to main index.php web page and from there by clicking on the button by below code they redirect to a random page from three which mentioned in below ...
8
votes
1
answer
24k
views
Server Side Javascript On Apache Server
We intend to use Apache server for web development.
For serverside scripting we wish to use server side javascript.
What is needed to make serverside javascript work on Apache server?
Is SSJS ...
3
votes
4
answers
8k
views
Datatables on server side processing with jQuery
I am new to datatables. I am trying to find solution for server side processing since last two days but didnt find the solution.
My JS code is
this.$("#example").DataTable({
"...
-2
votes
2
answers
629
views
Server side programming vs Client side programming [closed]
I'm trying to understand this concept better. Is the whole point of server side programming is to allow us to communicate with others? Whether it is to get new ideas or to get data that can't be ...