showing results for - "is nodejs code visible client side"
Ashley
14 Apr 2017
1No, Nodejs code is not visible to the client. 
2
3To be precise Nodejs is a javascript run-time environment, 
4which means it is an engine that executes javascript code. 
5
6The server code may contain endpoints, etc, which are callable by the client, 
7and which return information from the server which is rendered in the 
8browser, but the client cannot see the server-side code.