📌  相关文章
📜  nodejs 代码是否可见客户端 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:02.553000             🧑  作者: Mango

代码示例1
No, Nodejs code is not visible to the client. 

To be precise Nodejs is a javascript run-time environment, 
which means it is an engine that executes javascript code. 

The server code may contain endpoints, etc, which are callable by the client, 
and which return information from the server which is rendered in the 
browser, but the client cannot see the server-side code.