Home >Web Front-end >Front-end Q&A >What server does nodejs use?
The native server used by Node.js is the HTTP(S) server module. In addition, popular third-party servers are available, including Express.js, Koa.js, Fastify, and Hapi.js, depending on your application's needs.
What server does Node.js use?
Node.js is an asynchronous, event-driven JavaScript runtime environment widely used for building high-performance, scalable web applications. It uses the JavaScript engine V8 to execute code and provides a range of modules and tools to simplify web development. In order to handle incoming requests in a Node.js application, a web server is required.
The native server for Node.js is the HTTP(S) server module, which provides an API for creating, configuring, and managing HTTP(S) servers. The HTTP(S) server module is included in the Node.js core library and is easy to use and configure.
In addition to native servers, the following popular third-party servers can be used with Node.js:
Choosing which server to use depends on the specific requirements of your application. For example:
The above is the detailed content of What server does nodejs use?. For more information, please follow other related articles on the PHP Chinese website!