gpt4 book ai didi

javascript - Node.js 基本问题

转载 作者:太空宇宙 更新时间:2023-11-04 02:51:02 25 4
gpt4 key购买 nike

我正在考虑学习 Node.js。我刚刚在 Windows 上安装了它。我已经做了一些研究,但每个人似乎都直接跳入代码,这可以稍后进行,并且有足够的资源供我查找这些内容。我需要知道的是更基本的事情。

  1. Node.js 本质上是一个小型 Web 服务器,类似于本地托管的 Apache?是还是不是?

  2. 教程总是从一个简单的程序开始。 Node.js 服务器在哪里查找这些文件?我应该在哪里保存 .js 文件以便 node.js 可以看到它们?我可以有子目录吗?

  3. 如何更改 node.js 查找 .js 文件的位置?

  4. node.js 是否始终运行,或者可以像 Apache 一样打开和关闭吗?

  5. 网站如何与 Node.js 对话的简单示例(高级,无需代码)是什么?

最佳答案

`1. Is Node.js is bascially a small webserver, similar to a local-hosted Apache? Yes or no?

没有。 Node.js 是一个应用程序平台。它通常用于 Web 应用程序,并且确实具有内置的 HTTP 服务器和客户端,但它的用途远不止于此。

`2. Tutorials always start with a simple program. Where does the Node.js server look for these files? Where do I save my .js files so that node.js can see them? Can I have sub-directories?

无论你想去哪里。 Node.js 不会在任何特定的地方寻找它们。您可以使用 node path/to/your/file.js 启动应用程序。

`3. How do I change where node.js looks for .js files?

你不知道。 Node 没有任何全局配置来告诉它在哪里查找文件。

`4. Is node.js always running or can it be turned on and off like Apache?

您可以像 Apache 一样将其作为服务或守护进程运行,或者像 Apache 一样根据需要启动它。

`5. What is one simple example (high level, no code needed) of how a website would talk to node.js?

完全取决于应用程序。许多人只使用 HTTP,有些人使用 WebSockets。

关于javascript - Node.js 基本问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22510739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com