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
Asked
Active
Viewed 642 times
-1
-
3*"how to run server side javascript in client browser"* makes no sense. – T.J. Crowder Jul 28 '11 at 14:46
3 Answers
0
the only server side javascript I know of is node.js, however even that is off limits to client side scripts for security reasons.

Maxx
- 3,925
- 8
- 33
- 38
0
how to run server side javascript in client browser
You can't. That is why it is called server side JavaScript. The server executes the JavaScript and delivers the output to the client, which never sees the server side side.
can you help me how to run server side java-script and how to configure server.
Both depend on which type of SSJS you are using (so we can't provide specific instructions without more information or by making assumptions). Node is probably the most popular option at present. They have plenty of documentation (including some quick start guides on the front page of their site).

Quentin
- 914,110
- 126
- 1,211
- 1,335