diff --git a/Programming_Languages/NodeJS/Architecture/Event_loop.md b/Programming_Languages/NodeJS/Architecture/Event_loop.md index f500f21..43a587c 100644 --- a/Programming_Languages/NodeJS/Architecture/Event_loop.md +++ b/Programming_Languages/NodeJS/Architecture/Event_loop.md @@ -73,7 +73,4 @@ The phases are as follows: The terms _event loop_ and _event queue_ are often used interchangeably in the literature but in fact they are distinct. -The Event Loop is the Node runtime's method of execution, the queue is the stack of tasks that are lined up and executed by the loop. We can think of the queue as being the input and the loop as what acts on the input. The queue obviously emerges from the program we write but it is scheduled, organised and sequenced by the loop. - -**this is bold** -_this is italic_ \ No newline at end of file +The Event Loop is the Node runtime's method of execution, the queue is the stack of tasks that are lined up and executed by the loop. We can think of the queue as being the input and the loop as what acts on the input. The queue obviously emerges from the program we write but it is scheduled, organised and sequenced by the loop. \ No newline at end of file diff --git a/Programming_Languages/NodeJS/Modules/Core/http.md b/Programming_Languages/NodeJS/Modules/Core/http.md index fefc101..7de3997 100644 --- a/Programming_Languages/NodeJS/Modules/Core/http.md +++ b/Programming_Languages/NodeJS/Modules/Core/http.md @@ -6,6 +6,8 @@ tags: - node-modules --- +# `http` module + The HTTP Module allows us to create a web server that listens for HTTP requests on a given port. It is therefore perfect for creating backends for client-side JavaScript. ## Creating a server diff --git a/markdown-styles.css b/markdown-styles.css index d6d8721..0c1c27d 100644 --- a/markdown-styles.css +++ b/markdown-styles.css @@ -3,9 +3,12 @@ h1, h2, h3, h4, h5, h6, p { } pre, code { - font-family: 'JetBrains Mono'; + font-family: 'JetBrains Mono' !important; } +code, code { + font-family: 'Jetbrains mono'; +} /* h1 {