├── .gitignore ├── README.md ├── mentor-notes ├── NOTES.md ├── node-code-along-walkthrough.md ├── step-1.5 │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ └── server.js ├── step-1.75 │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ ├── router.js │ │ └── server.js ├── step-1 │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ └── server.js ├── step-2.5 │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ ├── router.js │ │ └── server.js ├── step-2 │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ ├── router.js │ │ └── server.js ├── step-3 │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ ├── router.js │ │ └── server.js ├── step-4 │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── index.js │ │ ├── main.css │ │ └── node-icon.ico │ └── src │ │ ├── router.js │ │ └── server.js └── step-5 │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── index.html │ ├── index.js │ ├── main.css │ └── node-icon.ico │ └── src │ ├── handlers.js │ ├── router.js │ └── server.js ├── public ├── index.html ├── index.js ├── main.css └── node-icon.ico └── src └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/README.md -------------------------------------------------------------------------------- /mentor-notes/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/NOTES.md -------------------------------------------------------------------------------- /mentor-notes/node-code-along-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/node-code-along-walkthrough.md -------------------------------------------------------------------------------- /mentor-notes/step-1.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.5/package.json -------------------------------------------------------------------------------- /mentor-notes/step-1.5/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.5/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-1.5/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.5/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-1.5/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.5/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-1.5/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.5/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-1.5/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.5/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-1.75/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/package-lock.json -------------------------------------------------------------------------------- /mentor-notes/step-1.75/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/package.json -------------------------------------------------------------------------------- /mentor-notes/step-1.75/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-1.75/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-1.75/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-1.75/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-1.75/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/src/router.js -------------------------------------------------------------------------------- /mentor-notes/step-1.75/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1.75/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1/package.json -------------------------------------------------------------------------------- /mentor-notes/step-1/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-1/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-1/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-1/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-1/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-1/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-2.5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/package-lock.json -------------------------------------------------------------------------------- /mentor-notes/step-2.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/package.json -------------------------------------------------------------------------------- /mentor-notes/step-2.5/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-2.5/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-2.5/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-2.5/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-2.5/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/src/router.js -------------------------------------------------------------------------------- /mentor-notes/step-2.5/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2.5/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/package-lock.json -------------------------------------------------------------------------------- /mentor-notes/step-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/package.json -------------------------------------------------------------------------------- /mentor-notes/step-2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-2/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-2/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-2/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-2/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/src/router.js -------------------------------------------------------------------------------- /mentor-notes/step-2/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-2/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/package-lock.json -------------------------------------------------------------------------------- /mentor-notes/step-3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/package.json -------------------------------------------------------------------------------- /mentor-notes/step-3/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-3/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-3/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-3/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-3/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/src/router.js -------------------------------------------------------------------------------- /mentor-notes/step-3/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-3/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/package-lock.json -------------------------------------------------------------------------------- /mentor-notes/step-4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/package.json -------------------------------------------------------------------------------- /mentor-notes/step-4/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-4/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-4/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-4/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-4/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/src/router.js -------------------------------------------------------------------------------- /mentor-notes/step-4/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-4/src/server.js -------------------------------------------------------------------------------- /mentor-notes/step-5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/package-lock.json -------------------------------------------------------------------------------- /mentor-notes/step-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/package.json -------------------------------------------------------------------------------- /mentor-notes/step-5/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/public/index.html -------------------------------------------------------------------------------- /mentor-notes/step-5/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/public/index.js -------------------------------------------------------------------------------- /mentor-notes/step-5/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/public/main.css -------------------------------------------------------------------------------- /mentor-notes/step-5/public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/public/node-icon.ico -------------------------------------------------------------------------------- /mentor-notes/step-5/src/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/src/handlers.js -------------------------------------------------------------------------------- /mentor-notes/step-5/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/src/router.js -------------------------------------------------------------------------------- /mentor-notes/step-5/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/mentor-notes/step-5/src/server.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/public/index.html -------------------------------------------------------------------------------- /public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/public/index.js -------------------------------------------------------------------------------- /public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/public/main.css -------------------------------------------------------------------------------- /public/node-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundersandcoders/Node-Intro-Workshop/HEAD/public/node-icon.ico -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------