Skip to content

Commit 6f69f57

Browse files
committed
rename repo (links and badges) from "todomvc-vanilla-javascript-example" to a more generic "todo-list-javascript-tutorial" to broaden appeal and inform people that this is in fact a tutorial! #5
1 parent 3847a8e commit 6f69f57

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
# Todo List App (TodoMVC) in Vanilla JavaScript
44

5-
[![Build Status](https://img.shields.io/travis/dwyl/todomvc-vanilla-javascript-example/master.svg?style=flat-square)](https://travis-ci.org/dwyl/todomvc-vanilla-javascript-example)
6-
[![codecov.io](https://img.shields.io/codecov/c/github/dwyl/todomvc-vanilla-javascript-example/master.svg?style=flat-square)](http://codecov.io/github/dwyl/todomvc-vanilla-javascript-example?branch=master)
7-
[![Dependencies: None!](https://david-dm.org/dwyl/todomvc-vanilla-javascript-example/status.svg?style=flat-square)](https://david-dm.org/dwyl/todomvc-vanilla-javascript-example)
8-
[![devDependencies Status](https://david-dm.org/dwyl/todomvc-vanilla-javascript-example/dev-status.svg?style=flat-square)](https://david-dm.org/dwyl/todomvc-vanilla-javascript-example?type=dev)
9-
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat-square)](https://github.com/dwyl/todomvc-vanilla-javascript-example/issues)
10-
[![HitCount](http://hits.dwyl.io/dwyl/todomvc-vanilla-javascript-example.svg)](http://hits.dwyl.io/dwyl/todomvc-vanilla-javascript-example)
5+
[![Build Status](https://img.shields.io/travis/dwyl/todo-list-javascript-tutorial/master.svg?style=flat-square)](https://travis-ci.org/dwyl/todo-list-javascript-tutorial)
6+
[![codecov.io](https://img.shields.io/codecov/c/github/dwyl/todo-list-javascript-tutorial/master.svg?style=flat-square)](http://codecov.io/github/dwyl/todo-list-javascript-tutorial?branch=master)
7+
[![Dependencies: None!](https://david-dm.org/dwyl/todo-list-javascript-tutorial/status.svg?style=flat-square)](https://david-dm.org/dwyl/todo-list-javascript-tutorial)
8+
[![devDependencies Status](https://david-dm.org/dwyl/todo-list-javascript-tutorial/dev-status.svg?style=flat-square)](https://david-dm.org/dwyl/todo-list-javascript-tutorial?type=dev)
9+
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat-square)](https://github.com/dwyl/todo-list-javascript-tutorial/issues)
10+
[![HitCount](http://hits.dwyl.io/dwyl/todo-list-javascript-tutorial.svg)](http://hits.dwyl.io/dwyl/todo-list-javascript-tutorial)
1111

1212
A ***step-by-step*** example/how-to
1313
for building a **Todo List _from scratch_**
@@ -75,7 +75,7 @@ into a "mini frontend framework" called "***elmish***".
7575
(_elmish is inspired by Elm but only meant for educational purposes!_)
7676

7777
The journey to creating **elmish** is captured in
78-
[**`elmish.md`**](https://github.com/dwyl/todomvc-vanilla-javascript-example/blob/master/elmish.md)
78+
[**`elmish.md`**](https://github.com/dwyl/todo-list-javascript-tutorial/blob/master/elmish.md)
7979
and fully documented code is in **`elmish.js`**.
8080
This means our Todo List App can be as concise
8181
and "declarative" as possible.
@@ -118,7 +118,7 @@ to develop their "core" JavaScript skills (_without using a framework/library_)
118118
while building a "real world" (_fully functional_) Todo List Application.
119119

120120
> As always, if you get "stuck", _please_ open an issue:
121-
https://github.com/dwyl/todomvc-vanilla-javascript-example/issues
121+
https://github.com/dwyl/todo-list-javascript-tutorial/issues
122122
by opening a question you help _everyone_ learn more effectively!
123123

124124

@@ -146,12 +146,12 @@ Start by cloning this repository to your `localhost`
146146
so that you can follow the example/tutorial offline:
147147

148148
```sh
149-
git clone https://github.com/dwyl/todomvc-vanilla-javascript-example.git
149+
git clone https://github.com/dwyl/todo-list-javascript-tutorial.git
150150
```
151151

152152
Install the `devDependencies` so you can run the tests:
153153
```sh
154-
cd todomvc-vanilla-javascript-example && npm install
154+
cd todo-list-javascript-tutorial && npm install
155155
```
156156

157157
Now you have _everything_ you need to build a Todo List from scratch!
@@ -202,9 +202,9 @@ We will be using **Tape** and **JSDOM** for testing
202202
both our functions and the final application.
203203
If you are `new` to either of these tools,
204204
please see:
205-
[https://github.com/dwyl/**todomvc-vanilla-javascript-example**](https://github.com/dwyl/todomvc-vanilla-javascript-example)
205+
[https://github.com/dwyl/**todo-list-javascript-tutorial**](https://github.com/dwyl/todo-list-javascript-tutorial)
206206
and
207-
[**front-end**-with-tape.md](https://github.com/dwyl/todomvc-vanilla-javascript-example/blob/master/front-end-with-tape.md)
207+
[**front-end**-with-tape.md](https://github.com/dwyl/todo-list-javascript-tutorial/blob/master/front-end-with-tape.md)
208208

209209
We will be using **JSDOC** for documentation.
210210
Please see [our tutorial](https://github.com/dwyl/learn-jsdoc) if this is new to you.
@@ -244,7 +244,7 @@ if you have followed previous tutorials.
244244
> If anything is _unclear_ please revisit
245245
[https://github.com/dwyl/**learn-tape**](https://github.com/dwyl/learn-tape)
246246
and
247-
[**front-end**-with-tape.md](https://github.com/dwyl/todomvc-vanilla-javascript-example/blob/master/front-end-with-tape.md)
247+
[**front-end**-with-tape.md](https://github.com/dwyl/todo-list-javascript-tutorial/blob/master/front-end-with-tape.md)
248248

249249
If you attempt to run the test file: `node test/todo-app.test.js`
250250
you should see no output. <br />

0 commit comments

Comments
 (0)