From 222acd4f15e6a68983e78fa905e426089c2375ab Mon Sep 17 00:00:00 2001 From: Agnes Oshiro <4010046+agnesoshiro@users.noreply.github.com> Date: Thu, 27 Sep 2018 04:02:28 -0700 Subject: [PATCH] Increase visibility of Glitch boilerplate (#252) * Increase visibility of Glitch boilerplate * fix: update intro in node and express --- .../basic-node-and-express/index.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/learn/src/introductions/apis-and-microservices/basic-node-and-express/index.md b/packages/learn/src/introductions/apis-and-microservices/basic-node-and-express/index.md index 32276176b7..7819ad6186 100644 --- a/packages/learn/src/introductions/apis-and-microservices/basic-node-and-express/index.md +++ b/packages/learn/src/introductions/apis-and-microservices/basic-node-and-express/index.md @@ -5,6 +5,15 @@ superBlock: APIs and Microservices --- ## Introduction to the Basic Node and Express Challenges -Node.js is a JavaScript tool that allows developers to write backend (server-side) programs in JavaScript. Node.js comes with a handful of built-in modules—small, independent programs—that help facilitate this purpose. Some of the core modules include:


Express, while not included with Node.js, is another module often used with it. Express runs between the server created by Node.js and the frontend pages of a web application. Express also handles an application's routing. Routing directs users to the correct page based on their interaction with the application.

While there are alternatives to using Express, its simplicity makes it a good place to begin when learning the interaction between a backend powered by Node.js and the frontend. -Working on these challenges will involve you writing your code on Glitch on our starter project. After completing each challenge you can copy your public Glitch url (to the homepage of your app) into the challenge screen to test it! Optionally you may choose to write your project on another platform but it must be publicly visible for our testing.
Start this project on Glitch using this link or clone this repository on GitHub! If you use Glitch, remember to save the link to your project somewhere safe! +Node.js is a JavaScript runtime that allows developers to write backend (server-side) programs in JavaScript. Node.js comes with a handful of built-in modules - small, independent programs - that help facilitate this purpose. Some of the core modules include: +- HTTP: a module that acts as a server +- File System: a module that reads and modifies files +- Path: a module for working with directory and file paths +- Assertion Testing: a module that checks code against prescribed constraints + +Express, while not included with Node.js, is another module often used with it. Express runs between the server created by Node.js and the frontend pages of a web application. Express also handles an application's routing. Routing directs users to the correct page based on their interaction with the application. While there are alternatives to using Express, its simplicity makes it a good place to begin when learning the interaction between a backend powered by Node.js and the frontend. + +Working on these challenges will involve you writing your code on Glitch on our starter project. After completing each challenge you can copy your public Glitch url (to the homepage of your app) into the challenge screen to test it! Optionally you may choose to write your project on another platform but it must be publicly visible for our testing. + +Start this project on Glitch using the **Backend Challenges Boilerplate** (required if you use Glitch) or clone this repository on GitHub! If you use Glitch, remember to save the link to your project somewhere safe!