Skip to content

Commit 18678d5

Browse files
committed
prepare v0.13 supported version
1 parent 1a0087e commit 18678d5

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

coderoad.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
version: "0.4.0"
1+
version: "0.4.1"
22
config:
33
testRunner:
44
command: ./node_modules/.bin/mocha
55
args:
66
filter: --grep
77
tap: --reporter=mocha-tap-reporter
8-
setup:
9-
commands:
10-
- npm install
118
directory: coderoad
9+
setup:
10+
commands:
11+
- cd coderoad && npm install
1212
repo:
1313
uri: https://github.com/coderoad/fcc-basic-node-and-express
1414
branch: v0.4.1

tutorial.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.4.0",
2+
"version": "0.4.1",
33
"summary": {
44
"title": "Basic Node & Express",
55
"description": "Build a server with Node & Express"
@@ -11,16 +11,17 @@
1111
"filter": "--grep",
1212
"tap": "--reporter=mocha-tap-reporter"
1313
},
14-
"setup": {
15-
"commands": [
16-
"npm install"
17-
],
18-
"commits": [
19-
"37411e3cae53dacb22f194949d7d0593e48a3fdd"
20-
]
21-
},
14+
2215
"directory": "coderoad"
2316
},
17+
"setup": {
18+
"commands": [
19+
"cd coderoad && npm install"
20+
],
21+
"commits": [
22+
"37411e3cae53dacb22f194949d7d0593e48a3fdd"
23+
]
24+
},
2425
"repo": {
2526
"uri": "https://github.com/coderoad/fcc-basic-node-and-express",
2627
"branch": "v0.4.1"
@@ -36,8 +37,8 @@
3637
{
3738
"id": "1",
3839
"title": "Meet the Node Console",
39-
"summary": "Introduction to the Node console",
40-
"content": "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:\n\n- HTTP: a module that acts as a server\n- File System: a module that reads and modifies files\n- Path: a module for working with directory and file paths\n- Assertion Testing: a module that checks code against prescribed constraints\n\nExpress, 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.\nDuring the development process, it is important to be able to check what’s going on in your code. Node is just a JavaScript environment. Like client side JavaScript, you can use the console to display useful debug information. On your local machine, you would see the console output in a terminal. On Glitch you can open the logs in the lower part of the screen. You can toggle the log panel with the button ‘Logs’ (lower-left, inside the tools menu).\n\nWe recommend to keep the log panel open while working at these challenges. By reading the logs, you can be aware of the nature of errors that may occur.",
40+
"summary": "",
41+
"content": "",
4142
"steps": [
4243
{
4344
"id": "1.1",

0 commit comments

Comments
 (0)