From 803e95e8f387ce6fbd32c7336f827514da5e0980 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Tue, 19 Mar 2024 18:30:55 +0100 Subject: [PATCH] Fix typo in article about static HTTP server in Node.JS --- source/_posts/How-to-create-static-HTTP-server-in-Node-JS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/How-to-create-static-HTTP-server-in-Node-JS.md b/source/_posts/How-to-create-static-HTTP-server-in-Node-JS.md index c126e74..ad1535b 100644 --- a/source/_posts/How-to-create-static-HTTP-server-in-Node-JS.md +++ b/source/_posts/How-to-create-static-HTTP-server-in-Node-JS.md @@ -13,7 +13,7 @@ thumbnail: /images/covers/How-to-create-static-HTTP-server-in-Node-JS.png If you want to serve static files on your Node.JS web application, you can create a simple static HTTP server in Node.JS. Node.JS is a event-driven server-side JavaScript runtime, that uses V8 JS engine (same as Chromium) and executes code outside a web browser. In this article we will cover basics of implementation of HTTP server in Node.JS and build a simple static HTTP server. -## Prerequisites +## Prerequisities - Node.JS installed on your development machine ## Built-in HTTP module Node.JS has built-in `http` module, which allows Node.JS to communicate over HyperText Transfer Protocol (HTTP).