├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── book.json ├── bower.json ├── docs ├── Glossary.md ├── README.md ├── assets │ ├── img │ │ ├── hello-world.png │ │ ├── pretty-hello-world.png │ │ ├── test-it-1.png │ │ ├── test-it-2.png │ │ └── test-it-3.png │ └── slides │ │ ├── BoilerCamp.key │ │ └── BoilerCamp.pdf ├── client-side-js │ ├── README.md │ ├── javascript-walkthrough.md │ ├── what-is-javascript.md │ └── what-is-jquery.md ├── html-css │ ├── README.md │ ├── html-css-walkthrough.md │ ├── what-are-html-and-css.md │ └── what-is-bootstrap.md ├── introduction │ ├── Environment.md │ ├── README.md │ ├── getting-from-an-idea-to-a-product.md │ └── how-internet-browsers-work.md ├── mongodb-mvc │ ├── README.md │ ├── mongodb-mvc-walkthrough.md │ ├── what-is-mongodb.md │ └── what-is-mvc.md └── node-express │ ├── README.md │ ├── node-express-walkthrough.md │ ├── what-is-expressjs.md │ └── what-is-nodejs.md ├── env.sample ├── index.html ├── package.json ├── seed.js ├── server.js └── src ├── assets ├── css │ └── style.css ├── img │ ├── 404.png │ ├── hero.jpeg │ └── rick.png └── js │ └── main.js ├── controllers ├── home.js └── post.js ├── models └── Post.js └── views ├── 404.handlebars ├── home.handlebars ├── layouts └── main.handlebars └── post.handlebars /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | .env 4 | .DS_Store 5 | _book 6 | *.log 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run deploy 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/README.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/book.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/bower.json -------------------------------------------------------------------------------- /docs/Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/Glossary.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/img/hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/img/hello-world.png -------------------------------------------------------------------------------- /docs/assets/img/pretty-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/img/pretty-hello-world.png -------------------------------------------------------------------------------- /docs/assets/img/test-it-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/img/test-it-1.png -------------------------------------------------------------------------------- /docs/assets/img/test-it-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/img/test-it-2.png -------------------------------------------------------------------------------- /docs/assets/img/test-it-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/img/test-it-3.png -------------------------------------------------------------------------------- /docs/assets/slides/BoilerCamp.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/slides/BoilerCamp.key -------------------------------------------------------------------------------- /docs/assets/slides/BoilerCamp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/assets/slides/BoilerCamp.pdf -------------------------------------------------------------------------------- /docs/client-side-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/client-side-js/README.md -------------------------------------------------------------------------------- /docs/client-side-js/javascript-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/client-side-js/javascript-walkthrough.md -------------------------------------------------------------------------------- /docs/client-side-js/what-is-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/client-side-js/what-is-javascript.md -------------------------------------------------------------------------------- /docs/client-side-js/what-is-jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/client-side-js/what-is-jquery.md -------------------------------------------------------------------------------- /docs/html-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/html-css/README.md -------------------------------------------------------------------------------- /docs/html-css/html-css-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/html-css/html-css-walkthrough.md -------------------------------------------------------------------------------- /docs/html-css/what-are-html-and-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/html-css/what-are-html-and-css.md -------------------------------------------------------------------------------- /docs/html-css/what-is-bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/html-css/what-is-bootstrap.md -------------------------------------------------------------------------------- /docs/introduction/Environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/introduction/Environment.md -------------------------------------------------------------------------------- /docs/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/introduction/README.md -------------------------------------------------------------------------------- /docs/introduction/getting-from-an-idea-to-a-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/introduction/getting-from-an-idea-to-a-product.md -------------------------------------------------------------------------------- /docs/introduction/how-internet-browsers-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/introduction/how-internet-browsers-work.md -------------------------------------------------------------------------------- /docs/mongodb-mvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/mongodb-mvc/README.md -------------------------------------------------------------------------------- /docs/mongodb-mvc/mongodb-mvc-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/mongodb-mvc/mongodb-mvc-walkthrough.md -------------------------------------------------------------------------------- /docs/mongodb-mvc/what-is-mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/mongodb-mvc/what-is-mongodb.md -------------------------------------------------------------------------------- /docs/mongodb-mvc/what-is-mvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/mongodb-mvc/what-is-mvc.md -------------------------------------------------------------------------------- /docs/node-express/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/node-express/README.md -------------------------------------------------------------------------------- /docs/node-express/node-express-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/node-express/node-express-walkthrough.md -------------------------------------------------------------------------------- /docs/node-express/what-is-expressjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/node-express/what-is-expressjs.md -------------------------------------------------------------------------------- /docs/node-express/what-is-nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/docs/node-express/what-is-nodejs.md -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/env.sample -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/package.json -------------------------------------------------------------------------------- /seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/seed.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/server.js -------------------------------------------------------------------------------- /src/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/assets/css/style.css -------------------------------------------------------------------------------- /src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/assets/img/404.png -------------------------------------------------------------------------------- /src/assets/img/hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/assets/img/hero.jpeg -------------------------------------------------------------------------------- /src/assets/img/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/assets/img/rick.png -------------------------------------------------------------------------------- /src/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/assets/js/main.js -------------------------------------------------------------------------------- /src/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/controllers/home.js -------------------------------------------------------------------------------- /src/controllers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/controllers/post.js -------------------------------------------------------------------------------- /src/models/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/models/Post.js -------------------------------------------------------------------------------- /src/views/404.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/views/404.handlebars -------------------------------------------------------------------------------- /src/views/home.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/views/home.handlebars -------------------------------------------------------------------------------- /src/views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/views/layouts/main.handlebars -------------------------------------------------------------------------------- /src/views/post.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoilerMake/how-to-webdev/HEAD/src/views/post.handlebars --------------------------------------------------------------------------------