Skip to content

Commit

Permalink
add explicit instruction to create a new directory for the project cl…
Browse files Browse the repository at this point in the history
…oses: #21 #24 #31 #67
  • Loading branch information
nelsonic committed Aug 5, 2023
1 parent 63431b8 commit 81a7637
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build a **Todo List App _from scratch_** in **`JavaScript`**.


<a href="https://dwyl.github.io/javascript-todo-list-tutorial/"
alt="Try the Demo on Heroku!">
alt="Try the Demo on GitHub Pages!">
<img src="https://user-images.githubusercontent.com/194400/45237254-10d5e980-b2d6-11e8-8281-b95452bde519.gif"
alt="Step one: learn JavaScript!">
</a>
Expand Down Expand Up @@ -206,8 +206,13 @@ and
We will be using **JSDOC** for documentation.
Please see [our tutorial](https://github.com/dwyl/learn-jsdoc) if this is new to you.

<br />

#### Create Files

Create a **`new`** directory e.g: `/todo-app`
So that you can build the Todo List from scratch!

In your editor/terminal create the following files:

+ `test/todo-app.test.js`
Expand Down
2 changes: 1 addition & 1 deletion lib/server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Zero Dependencies Node.js HTTP Server for running static on Heroku
// Zero Dependencies Node.js HTTP Server for running static on localhost
var http = require('http');
var fs = require('fs');
var path = require('path');
Expand Down

0 comments on commit 81a7637

Please sign in to comment.