├── README.md ├── chap1 ├── chap1-1.js └── example1-1.js ├── chap10 ├── README.md ├── chap10-1.js ├── example10-1.js ├── example10-2.js ├── example10-3.js └── example10-4.js ├── chap11 ├── README.md ├── assert.js ├── circle.js ├── debugtest.js ├── external.js ├── log.txt ├── testcase.js ├── thetest.js ├── vowstest.js └── vowstest2.js ├── chap12 ├── README.md ├── ardblink.js ├── chap12-1.js ├── fancyblinking.js └── piblink.js ├── chap2 ├── README.md ├── add2.js ├── add2new.js ├── addtwo.js ├── apples.txt ├── chap2-1.html ├── chap2-10.js ├── chap2-11.js ├── chap2-12.js ├── chap2-2.js ├── chap2-2b.js ├── chap2-2new.js ├── chap2-3.js ├── chap2-3new.js ├── chap2-4.js ├── chap2-4new.js ├── chap2-5.js ├── chap2-5new.js ├── chap2-6.js ├── chap2-6new.js ├── chap2-7.js ├── chap2-7new.js ├── chap2-8.js ├── chap2-9.js ├── data │ ├── data1.txt │ ├── data2.txt │ ├── data3.txt │ ├── data4.txt │ └── data5.txt ├── example2-1.js ├── example2-10.js ├── example2-11.js ├── example2-2.js ├── example2-2new.js ├── example2-3.js ├── example2-3new.js ├── example2-4.js ├── example2-4new.js ├── example2-5.js ├── example2-5new.js ├── example2-6.js ├── example2-7.js ├── example2-8.js └── example2-9.js ├── chap3 ├── README.md ├── arrayfunctions.js ├── chap3-1.js ├── chap3-2.js ├── chap3-3.js ├── chap3-4.js ├── chap3-5.js ├── chap3-7.js ├── chap3-8.js ├── data │ ├── data1.txt │ ├── data2.txt │ ├── data3.txt │ ├── data4.txt │ ├── data5.txt │ ├── fruit1.txt │ ├── fruit2.txt │ └── fruit3.txt ├── example3-1.js ├── example3-4.js ├── example3-5.js ├── example3-6.js ├── example3-7.js ├── inputcheck │ ├── index.js │ ├── output.txt │ ├── package-lock.json │ ├── package.json │ └── test │ │ └── test.js ├── options.js ├── options2.js └── script.js ├── chap4 ├── README.md ├── chap4-1.js ├── chap4-2.js ├── chap4-3.js ├── chap4-4.js ├── chap4-5.js ├── chap4-6.js ├── chap4-7.js ├── chap4-8.js ├── example4-1.js ├── example4-2.js └── repl.js ├── chap5 ├── README.md ├── chap5-1.js ├── chap5-2.js ├── chap5-3.js ├── example5-1.js ├── example5-2.js ├── example5-3.js ├── example5-4.js ├── index.html ├── phoenix5a.png └── video.html ├── chap6 ├── README.md ├── chap6-1.js ├── chap6-10.js ├── chap6-11.js ├── chap6-2.js ├── chap6-3.js ├── chap6-4.js ├── chap6-5.js ├── chap6-5new.js ├── chap6-6.js ├── chap6-7.js ├── chap6-8.js ├── chap6-9.js ├── example6-1.js ├── example6-2.js ├── example6-3.js ├── example6-5.js ├── example6-6.js ├── example6-7.js ├── new.txt ├── phoenix5a.png ├── polaroid ├── test.png └── working.txt ├── chap7 ├── README.md ├── chap7-1.js ├── check.js ├── example7-1.js ├── example7-2.js ├── example7-3.js ├── example7-4.js ├── example7-5.js ├── example7-6.js ├── example7-7.js ├── example7-8.js ├── example7-9.js ├── main.txt ├── mydata.txt └── newhttps.js ├── chap8 ├── README.md ├── app ├── chap8-1.js ├── chap8-10.js ├── chap8-11.js ├── chap8-12.js ├── chap8-2.js ├── chap8-4.js ├── chap8-5.js ├── chap8-6.js ├── chap8-7.js ├── chap8-8.js ├── chap8-9.js ├── child.js ├── example8-1.js ├── example8-2.js ├── my.bat ├── snaps │ ├── phoenix5a.png │ └── polaroid └── sub │ └── test.txt ├── chap9 ├── README.md ├── apples.txt ├── apples │ └── data.txt ├── chap9-1.js ├── chap9-2.js ├── chap9-3.js ├── chap9-4.js ├── chap9-5.js ├── chap9-6.js ├── chap9-7.js ├── chap9-8.js ├── chap9-9.js ├── class.js ├── input.js └── new.txt └── images └── phoenix5a.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/README.md -------------------------------------------------------------------------------- /chap1/chap1-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap1/chap1-1.js -------------------------------------------------------------------------------- /chap1/example1-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap1/example1-1.js -------------------------------------------------------------------------------- /chap10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap10/README.md -------------------------------------------------------------------------------- /chap10/chap10-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap10/chap10-1.js -------------------------------------------------------------------------------- /chap10/example10-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap10/example10-1.js -------------------------------------------------------------------------------- /chap10/example10-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap10/example10-2.js -------------------------------------------------------------------------------- /chap10/example10-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap10/example10-3.js -------------------------------------------------------------------------------- /chap10/example10-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap10/example10-4.js -------------------------------------------------------------------------------- /chap11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/README.md -------------------------------------------------------------------------------- /chap11/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/assert.js -------------------------------------------------------------------------------- /chap11/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/circle.js -------------------------------------------------------------------------------- /chap11/debugtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/debugtest.js -------------------------------------------------------------------------------- /chap11/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/external.js -------------------------------------------------------------------------------- /chap11/log.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chap11/testcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/testcase.js -------------------------------------------------------------------------------- /chap11/thetest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/thetest.js -------------------------------------------------------------------------------- /chap11/vowstest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/vowstest.js -------------------------------------------------------------------------------- /chap11/vowstest2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap11/vowstest2.js -------------------------------------------------------------------------------- /chap12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap12/README.md -------------------------------------------------------------------------------- /chap12/ardblink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap12/ardblink.js -------------------------------------------------------------------------------- /chap12/chap12-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap12/chap12-1.js -------------------------------------------------------------------------------- /chap12/fancyblinking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap12/fancyblinking.js -------------------------------------------------------------------------------- /chap12/piblink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap12/piblink.js -------------------------------------------------------------------------------- /chap2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/README.md -------------------------------------------------------------------------------- /chap2/add2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/add2.js -------------------------------------------------------------------------------- /chap2/add2new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/add2new.js -------------------------------------------------------------------------------- /chap2/addtwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/addtwo.js -------------------------------------------------------------------------------- /chap2/apples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/apples.txt -------------------------------------------------------------------------------- /chap2/chap2-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-1.html -------------------------------------------------------------------------------- /chap2/chap2-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-10.js -------------------------------------------------------------------------------- /chap2/chap2-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-11.js -------------------------------------------------------------------------------- /chap2/chap2-12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-12.js -------------------------------------------------------------------------------- /chap2/chap2-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-2.js -------------------------------------------------------------------------------- /chap2/chap2-2b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-2b.js -------------------------------------------------------------------------------- /chap2/chap2-2new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-2new.js -------------------------------------------------------------------------------- /chap2/chap2-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-3.js -------------------------------------------------------------------------------- /chap2/chap2-3new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-3new.js -------------------------------------------------------------------------------- /chap2/chap2-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-4.js -------------------------------------------------------------------------------- /chap2/chap2-4new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-4new.js -------------------------------------------------------------------------------- /chap2/chap2-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-5.js -------------------------------------------------------------------------------- /chap2/chap2-5new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-5new.js -------------------------------------------------------------------------------- /chap2/chap2-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-6.js -------------------------------------------------------------------------------- /chap2/chap2-6new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-6new.js -------------------------------------------------------------------------------- /chap2/chap2-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-7.js -------------------------------------------------------------------------------- /chap2/chap2-7new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-7new.js -------------------------------------------------------------------------------- /chap2/chap2-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-8.js -------------------------------------------------------------------------------- /chap2/chap2-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/chap2-9.js -------------------------------------------------------------------------------- /chap2/data/data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/data/data1.txt -------------------------------------------------------------------------------- /chap2/data/data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/data/data2.txt -------------------------------------------------------------------------------- /chap2/data/data3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/data/data3.txt -------------------------------------------------------------------------------- /chap2/data/data4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/data/data4.txt -------------------------------------------------------------------------------- /chap2/data/data5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/data/data5.txt -------------------------------------------------------------------------------- /chap2/example2-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-1.js -------------------------------------------------------------------------------- /chap2/example2-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-10.js -------------------------------------------------------------------------------- /chap2/example2-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-11.js -------------------------------------------------------------------------------- /chap2/example2-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-2.js -------------------------------------------------------------------------------- /chap2/example2-2new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-2new.js -------------------------------------------------------------------------------- /chap2/example2-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-3.js -------------------------------------------------------------------------------- /chap2/example2-3new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-3new.js -------------------------------------------------------------------------------- /chap2/example2-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-4.js -------------------------------------------------------------------------------- /chap2/example2-4new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-4new.js -------------------------------------------------------------------------------- /chap2/example2-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-5.js -------------------------------------------------------------------------------- /chap2/example2-5new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-5new.js -------------------------------------------------------------------------------- /chap2/example2-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-6.js -------------------------------------------------------------------------------- /chap2/example2-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-7.js -------------------------------------------------------------------------------- /chap2/example2-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-8.js -------------------------------------------------------------------------------- /chap2/example2-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap2/example2-9.js -------------------------------------------------------------------------------- /chap3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/README.md -------------------------------------------------------------------------------- /chap3/arrayfunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/arrayfunctions.js -------------------------------------------------------------------------------- /chap3/chap3-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-1.js -------------------------------------------------------------------------------- /chap3/chap3-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-2.js -------------------------------------------------------------------------------- /chap3/chap3-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-3.js -------------------------------------------------------------------------------- /chap3/chap3-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-4.js -------------------------------------------------------------------------------- /chap3/chap3-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-5.js -------------------------------------------------------------------------------- /chap3/chap3-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-7.js -------------------------------------------------------------------------------- /chap3/chap3-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/chap3-8.js -------------------------------------------------------------------------------- /chap3/data/data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/data/data1.txt -------------------------------------------------------------------------------- /chap3/data/data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/data/data2.txt -------------------------------------------------------------------------------- /chap3/data/data3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/data/data3.txt -------------------------------------------------------------------------------- /chap3/data/data4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/data/data4.txt -------------------------------------------------------------------------------- /chap3/data/data5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/data/data5.txt -------------------------------------------------------------------------------- /chap3/data/fruit1.txt: -------------------------------------------------------------------------------- 1 | apples 2 | -------------------------------------------------------------------------------- /chap3/data/fruit2.txt: -------------------------------------------------------------------------------- 1 | oranges 2 | -------------------------------------------------------------------------------- /chap3/data/fruit3.txt: -------------------------------------------------------------------------------- 1 | peaches 2 | -------------------------------------------------------------------------------- /chap3/example3-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/example3-1.js -------------------------------------------------------------------------------- /chap3/example3-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/example3-4.js -------------------------------------------------------------------------------- /chap3/example3-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/example3-5.js -------------------------------------------------------------------------------- /chap3/example3-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/example3-6.js -------------------------------------------------------------------------------- /chap3/example3-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/example3-7.js -------------------------------------------------------------------------------- /chap3/inputcheck/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/inputcheck/index.js -------------------------------------------------------------------------------- /chap3/inputcheck/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chap3/inputcheck/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/inputcheck/package-lock.json -------------------------------------------------------------------------------- /chap3/inputcheck/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/inputcheck/package.json -------------------------------------------------------------------------------- /chap3/inputcheck/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/inputcheck/test/test.js -------------------------------------------------------------------------------- /chap3/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/options.js -------------------------------------------------------------------------------- /chap3/options2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/options2.js -------------------------------------------------------------------------------- /chap3/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap3/script.js -------------------------------------------------------------------------------- /chap4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/README.md -------------------------------------------------------------------------------- /chap4/chap4-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-1.js -------------------------------------------------------------------------------- /chap4/chap4-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-2.js -------------------------------------------------------------------------------- /chap4/chap4-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-3.js -------------------------------------------------------------------------------- /chap4/chap4-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-4.js -------------------------------------------------------------------------------- /chap4/chap4-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-5.js -------------------------------------------------------------------------------- /chap4/chap4-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-6.js -------------------------------------------------------------------------------- /chap4/chap4-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-7.js -------------------------------------------------------------------------------- /chap4/chap4-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/chap4-8.js -------------------------------------------------------------------------------- /chap4/example4-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/example4-1.js -------------------------------------------------------------------------------- /chap4/example4-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/example4-2.js -------------------------------------------------------------------------------- /chap4/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap4/repl.js -------------------------------------------------------------------------------- /chap5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/README.md -------------------------------------------------------------------------------- /chap5/chap5-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/chap5-1.js -------------------------------------------------------------------------------- /chap5/chap5-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/chap5-2.js -------------------------------------------------------------------------------- /chap5/chap5-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/chap5-3.js -------------------------------------------------------------------------------- /chap5/example5-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/example5-1.js -------------------------------------------------------------------------------- /chap5/example5-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/example5-2.js -------------------------------------------------------------------------------- /chap5/example5-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/example5-3.js -------------------------------------------------------------------------------- /chap5/example5-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/example5-4.js -------------------------------------------------------------------------------- /chap5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/index.html -------------------------------------------------------------------------------- /chap5/phoenix5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/phoenix5a.png -------------------------------------------------------------------------------- /chap5/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap5/video.html -------------------------------------------------------------------------------- /chap6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/README.md -------------------------------------------------------------------------------- /chap6/chap6-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-1.js -------------------------------------------------------------------------------- /chap6/chap6-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-10.js -------------------------------------------------------------------------------- /chap6/chap6-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-11.js -------------------------------------------------------------------------------- /chap6/chap6-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-2.js -------------------------------------------------------------------------------- /chap6/chap6-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-3.js -------------------------------------------------------------------------------- /chap6/chap6-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-4.js -------------------------------------------------------------------------------- /chap6/chap6-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-5.js -------------------------------------------------------------------------------- /chap6/chap6-5new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-5new.js -------------------------------------------------------------------------------- /chap6/chap6-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-6.js -------------------------------------------------------------------------------- /chap6/chap6-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-7.js -------------------------------------------------------------------------------- /chap6/chap6-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-8.js -------------------------------------------------------------------------------- /chap6/chap6-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/chap6-9.js -------------------------------------------------------------------------------- /chap6/example6-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/example6-1.js -------------------------------------------------------------------------------- /chap6/example6-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/example6-2.js -------------------------------------------------------------------------------- /chap6/example6-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/example6-3.js -------------------------------------------------------------------------------- /chap6/example6-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/example6-5.js -------------------------------------------------------------------------------- /chap6/example6-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/example6-6.js -------------------------------------------------------------------------------- /chap6/example6-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/example6-7.js -------------------------------------------------------------------------------- /chap6/new.txt: -------------------------------------------------------------------------------- 1 | First line -------------------------------------------------------------------------------- /chap6/phoenix5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/phoenix5a.png -------------------------------------------------------------------------------- /chap6/polaroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/polaroid -------------------------------------------------------------------------------- /chap6/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/test.png -------------------------------------------------------------------------------- /chap6/working.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap6/working.txt -------------------------------------------------------------------------------- /chap7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/README.md -------------------------------------------------------------------------------- /chap7/chap7-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/chap7-1.js -------------------------------------------------------------------------------- /chap7/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/check.js -------------------------------------------------------------------------------- /chap7/example7-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-1.js -------------------------------------------------------------------------------- /chap7/example7-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-2.js -------------------------------------------------------------------------------- /chap7/example7-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-3.js -------------------------------------------------------------------------------- /chap7/example7-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-4.js -------------------------------------------------------------------------------- /chap7/example7-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-5.js -------------------------------------------------------------------------------- /chap7/example7-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-6.js -------------------------------------------------------------------------------- /chap7/example7-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-7.js -------------------------------------------------------------------------------- /chap7/example7-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-8.js -------------------------------------------------------------------------------- /chap7/example7-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/example7-9.js -------------------------------------------------------------------------------- /chap7/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/main.txt -------------------------------------------------------------------------------- /chap7/mydata.txt: -------------------------------------------------------------------------------- 1 | this is some data 2 | -------------------------------------------------------------------------------- /chap7/newhttps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap7/newhttps.js -------------------------------------------------------------------------------- /chap8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/README.md -------------------------------------------------------------------------------- /chap8/app: -------------------------------------------------------------------------------- 1 | #!/usr/bin/node 2 | 3 | console.log(global); 4 | -------------------------------------------------------------------------------- /chap8/chap8-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-1.js -------------------------------------------------------------------------------- /chap8/chap8-10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-10.js -------------------------------------------------------------------------------- /chap8/chap8-11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-11.js -------------------------------------------------------------------------------- /chap8/chap8-12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-12.js -------------------------------------------------------------------------------- /chap8/chap8-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-2.js -------------------------------------------------------------------------------- /chap8/chap8-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-4.js -------------------------------------------------------------------------------- /chap8/chap8-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-5.js -------------------------------------------------------------------------------- /chap8/chap8-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-6.js -------------------------------------------------------------------------------- /chap8/chap8-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-7.js -------------------------------------------------------------------------------- /chap8/chap8-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-8.js -------------------------------------------------------------------------------- /chap8/chap8-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/chap8-9.js -------------------------------------------------------------------------------- /chap8/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/child.js -------------------------------------------------------------------------------- /chap8/example8-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/example8-1.js -------------------------------------------------------------------------------- /chap8/example8-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/example8-2.js -------------------------------------------------------------------------------- /chap8/my.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM Next command generates a list of program files 3 | dir 4 | -------------------------------------------------------------------------------- /chap8/snaps/phoenix5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/snaps/phoenix5a.png -------------------------------------------------------------------------------- /chap8/snaps/polaroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap8/snaps/polaroid -------------------------------------------------------------------------------- /chap8/sub/test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /chap9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/README.md -------------------------------------------------------------------------------- /chap9/apples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/apples.txt -------------------------------------------------------------------------------- /chap9/apples/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/apples/data.txt -------------------------------------------------------------------------------- /chap9/chap9-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-1.js -------------------------------------------------------------------------------- /chap9/chap9-2.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | if (true) { 4 | let sum = 100; 5 | } 6 | 7 | console.log(sum); 8 | -------------------------------------------------------------------------------- /chap9/chap9-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-3.js -------------------------------------------------------------------------------- /chap9/chap9-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-4.js -------------------------------------------------------------------------------- /chap9/chap9-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-5.js -------------------------------------------------------------------------------- /chap9/chap9-6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-6.js -------------------------------------------------------------------------------- /chap9/chap9-7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-7.js -------------------------------------------------------------------------------- /chap9/chap9-8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-8.js -------------------------------------------------------------------------------- /chap9/chap9-9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/chap9-9.js -------------------------------------------------------------------------------- /chap9/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/class.js -------------------------------------------------------------------------------- /chap9/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/input.js -------------------------------------------------------------------------------- /chap9/new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/chap9/new.txt -------------------------------------------------------------------------------- /images/phoenix5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelleyp/LearningNode2/HEAD/images/phoenix5a.png --------------------------------------------------------------------------------