I actually started node.js but i don't know how it is different from network programming.
Asked
Active
Viewed 69 times
1 Answers
0
in CS, you are doing network programming when you are creating softwares that communicates through computer network using sockets, protocols, etc.
Doing node.js is just as you mentioned "server side scripting" because you are not involved with sockets or communication with the client browser or anything else. You are just exploiting the network mechanics / softwares.
There are huge differences between the functions you call in C such as socket()
, connect()
and accept()
and your node.js stuff.
Take a look to the man pages of these functions. You will understand.

Valentin Trinqué
- 1,044
- 1
- 10
- 22