From 89731ab8252dd3f3c8acec5745e11de495ba8072 Mon Sep 17 00:00:00 2001 From: RA80533 <32469082+RA80533@users.noreply.github.com> Date: Wed, 2 Jun 2021 19:36:56 -0400 Subject: [PATCH 1/2] Change "Node" to "Node.js" --- config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.yml b/config.yml index 7a2cc8d..e89fa7d 100644 --- a/config.yml +++ b/config.yml @@ -1,8 +1,8 @@ -title: Introduction to Node with Express +title: Introduction to Node.js with Express tagline: Learn how to make a basic server with Node.js and Express.js description: Node.js gives you the ability to run JavaScript files on the server-side. Express is a library for Node.js, that allows you to make requests to different "endpoints" and get a response back. tags: - - Node + - Node.js - Express - JavaScript - JSON @@ -121,4 +121,4 @@ steps: issue: 8 - type: respond with: 08-complete.md - issue: 8 \ No newline at end of file + issue: 8 From 3054dcdef63f32877c0f8e79389fb5233b181275 Mon Sep 17 00:00:00 2001 From: RA80533 <32469082+RA80533@users.noreply.github.com> Date: Wed, 2 Jun 2021 19:40:46 -0400 Subject: [PATCH 2/2] Change "Node" to "Node.js" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5efb44d..2837aa4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Node and Express Server Tutorial +# Node.js and Express Server Tutorial Traditionally, JavaScript is a browser-side programming language. However, Node.js gives you the ability to run JavaScript files on the server-side. Express is a library for Node.js, that allows you to make requests to different "endpoints" and get a response back. In this tutorial you will learn how to: