├── Chapter 1 └── source-code │ ├── app.js │ ├── bin │ └── www │ ├── package.json │ ├── public │ └── stylesheets │ │ ├── style.css │ │ ├── style.css.map │ │ └── style.sass │ └── server │ ├── config │ ├── config.js │ └── passport.js │ ├── controllers │ └── comments.js │ ├── models │ ├── comments.js │ └── users.js │ ├── routes │ ├── comments.js │ ├── index.js │ └── users.js │ └── views │ ├── pages │ ├── comments.ejs │ ├── error.ejs │ ├── index.ejs │ ├── login.ejs │ ├── profile.ejs │ └── signup.ejs │ └── partials │ ├── footer.ejs │ ├── header.ejs │ ├── javascript.ejs │ └── stylesheet.ejs ├── Chapter 10 └── source-code │ ├── Dockerfile │ ├── Procfile │ ├── README.md │ ├── config │ └── passport.js │ ├── controllers │ ├── home.js │ └── user.js │ ├── docker-compose.yml │ ├── models │ └── User.js │ ├── package.json │ ├── public │ ├── css │ │ ├── main.css │ │ ├── main.scss │ │ └── vendor │ │ │ ├── _bootstrap.scss │ │ │ └── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── lib │ │ ├── bootstrap.js │ │ └── jquery.js │ │ └── main.js │ ├── server.js │ ├── test │ └── app.test.js │ └── views │ ├── layouts │ └── main.html │ ├── pages │ ├── home.html │ ├── login.html │ ├── profile.html │ └── signup.html │ └── partials │ ├── footer.html │ └── header.html ├── Chapter 2 └── source-code │ ├── app.js │ ├── bin │ └── www │ ├── config │ ├── config.json │ └── migrations │ │ ├── 20160319100145-create-user.js │ │ └── 20160319101806-create-band.js │ ├── controllers │ ├── band.js │ ├── index.js │ └── user.js │ ├── models │ ├── band.js │ ├── index.js │ └── user.js │ ├── mvc_mysql_app.sql │ ├── package.json │ ├── public │ └── stylesheets │ │ └── style.css │ └── views │ ├── pages │ ├── band-list.html │ ├── error.html │ ├── index.html │ └── layout.html │ └── partials │ ├── footer.html │ └── head.html ├── Chapter 3 └── source-code │ ├── app.js │ ├── package.json │ ├── public │ ├── images │ │ └── image-placeholder.jpg │ ├── javascripts │ │ ├── bootstrap.min.js │ │ └── jquery.min.js │ ├── stylesheets │ │ ├── bootstrap.min.css │ │ ├── style.css │ │ ├── style.css.map │ │ └── style.sass │ └── videos │ │ ├── sample.mp4 │ │ └── sample.webm │ └── server │ ├── config │ ├── config.js │ └── passport.js │ ├── controllers │ ├── auth.js │ ├── comments.js │ ├── images.js │ ├── index.js │ └── videos.js │ ├── models │ ├── comments.js │ ├── images.js │ ├── users.js │ └── videos.js │ └── views │ ├── pages │ ├── comments.ejs │ ├── error.ejs │ ├── images-gallery.ejs │ ├── index.ejs │ ├── login.ejs │ ├── profile.ejs │ ├── signup.ejs │ └── videos.ejs │ └── partials │ ├── footer.ejs │ ├── header.ejs │ ├── javascript.ejs │ └── stylesheet.ejs ├── Chapter 4 ├── example-images │ ├── sample01.jpg │ ├── sample02.jpg │ ├── sample03.jpg │ ├── sample04.jpg │ ├── sample05.png │ └── sample07.jpg └── source-code │ ├── app │ ├── controllers │ │ ├── books.js │ │ └── home.js │ ├── models │ │ ├── article.js │ │ └── book.js │ └── views │ │ ├── book │ │ ├── add-photo.swig │ │ ├── books.swig │ │ └── posted-photo.swig │ │ ├── error.swig │ │ ├── index.swig │ │ └── layout.swig │ ├── bower.json │ ├── config │ ├── config.js │ ├── env.js │ └── express.js │ ├── gulpfile.js │ └── package.json ├── Chapter 5 └── source-code │ ├── app.js │ ├── app │ ├── controllers │ │ ├── home.js │ │ └── locations.js │ ├── models │ │ ├── article.js │ │ ├── location.js │ │ └── store.js │ └── views │ │ ├── pages │ │ ├── add-location.html │ │ ├── error.html │ │ ├── index.html │ │ ├── layout.html │ │ └── locations.html │ │ └── partials │ │ ├── footer.html │ │ └── head.html │ ├── bower.json │ ├── config │ ├── config.js │ └── express.js │ ├── gulpfile.js │ ├── locations.json │ ├── package.json │ └── public │ ├── images │ ├── pin-off.png │ └── pin.png │ └── js │ └── getCurrentPosition.js ├── Chapter 6 └── source-code │ ├── README.md │ ├── client │ ├── README.md │ ├── images │ │ ├── heritage.jpg │ │ └── knucklehead.jpg │ ├── index.html │ └── js │ │ ├── motorcycles.js │ │ └── reviews.js │ ├── common │ └── models │ │ ├── motorcycle.js │ │ ├── motorcycle.json │ │ ├── review.js │ │ └── review.json │ ├── package.json │ └── server │ ├── boot │ ├── _root.js │ └── create-sample-models.js │ ├── component-config.json │ ├── config.json │ ├── datasources.json │ ├── middleware.json │ ├── middleware.production.json │ ├── model-config.json │ └── server.js ├── Chapter 7 └── source-code │ ├── README.md │ ├── app.js │ ├── bower.json │ ├── gulpfile.js │ ├── package.json │ ├── public │ ├── components │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── CHANGELOG.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── npm.js │ │ │ │ │ └── umd │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ ├── grunt │ │ │ │ ├── .jshintrc │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ ├── bs-sass-compile │ │ │ │ │ ├── libsass.js │ │ │ │ │ └── sass.js │ │ │ │ ├── configBridge.json │ │ │ │ └── sauce_browsers.yml │ │ │ ├── js │ │ │ │ ├── .eslintrc │ │ │ │ ├── .jscsrc │ │ │ │ ├── dist │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── alert.js.map │ │ │ │ │ ├── button.js │ │ │ │ │ ├── button.js.map │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── carousel.js.map │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.js.map │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown.js.map │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── modal.js.map │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── popover.js.map │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── scrollspy.js.map │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tab.js.map │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── tooltip.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ │ └── src │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ ├── sache.json │ │ │ └── scss │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .scsslint.yml │ │ │ │ ├── _alert.scss │ │ │ │ ├── _animation.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _responsive-embed.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities-responsive.scss │ │ │ │ ├── _utilities-spacing.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-flex.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ └── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _label.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _navbar-align.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _pulls.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ └── _text-truncate.scss │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── css │ │ └── style.css │ └── js │ │ └── main.js │ ├── routes │ └── index.js │ └── views │ ├── error.ejs │ ├── footer.ejs │ ├── header.ejs │ └── index.ejs ├── Chapter 8 ├── sample-images │ ├── old-car-1.jpg │ ├── old-car-2.jpg │ ├── old-car-3.jpg │ ├── old-car-hero.jpg │ └── sample-blog-image.jpg └── source-code │ ├── Procfile │ ├── README.md │ ├── gulpfile.js │ ├── keystone.js │ ├── models │ ├── About.js │ ├── Enquiry.js │ ├── Gallery.js │ ├── Post.js │ ├── PostCategory.js │ └── UserAdmin.js │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── fonts │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── .DS_Store │ │ ├── header-bg-1920x1440.jpg │ │ ├── logo-email.gif │ │ └── logo.svg │ ├── js │ │ ├── bootstrap │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── bootstrap-3.3.5.js │ │ │ ├── bootstrap-3.3.5.min.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── npm.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── jquery │ │ │ ├── jquery-1.11.3.js │ │ │ ├── jquery-1.11.3.min.js │ │ │ ├── jquery-2.1.4.js │ │ │ └── jquery-2.1.4.min.js │ │ └── scripts.js │ └── styles │ │ ├── bootstrap │ │ ├── _bootstrap-compass.scss │ │ ├── _bootstrap-mincer.scss │ │ ├── _bootstrap-sprockets.scss │ │ ├── _bootstrap.scss │ │ ├── _bootswatch.scss │ │ └── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _theme_variables.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ │ ├── site.css │ │ ├── site.scss │ │ └── site │ │ ├── _layout.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ ├── routes │ ├── emails.js │ ├── index.js │ ├── middleware.js │ └── views │ │ ├── about.js │ │ ├── blog.js │ │ ├── contact.js │ │ ├── gallery.js │ │ ├── index.js │ │ └── post.js │ ├── templates │ └── themes │ │ ├── default │ │ ├── emails │ │ │ └── enquiry-notification.swig │ │ ├── layouts │ │ │ └── default.swig │ │ ├── mixins │ │ │ └── flash-messages.swig │ │ └── views │ │ │ ├── blog.swig │ │ │ ├── contact.swig │ │ │ ├── errors │ │ │ ├── 404.swig │ │ │ └── 500.swig │ │ │ ├── gallery.swig │ │ │ ├── index.swig │ │ │ └── post.swig │ │ └── newBlog │ │ ├── emails │ │ └── enquiry-notification.swig │ │ ├── layouts │ │ └── default.swig │ │ ├── mixins │ │ └── flash-messages.swig │ │ └── views │ │ ├── about.swig │ │ ├── blog.swig │ │ ├── contact.swig │ │ ├── errors │ │ ├── 404.swig │ │ └── 500.swig │ │ ├── gallery.swig │ │ ├── index.swig │ │ └── post.swig │ └── updates │ └── 0.0.1-admins.js ├── Chapter 9 └── source-code │ ├── .bowerrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── .yo-rc.json │ ├── Procfile │ ├── README.md │ ├── arc-manager.json │ ├── bin │ └── deploy.sh │ ├── bower.json │ ├── client │ ├── README.md │ ├── components │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── CHANGELOG.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── npm.js │ │ │ │ │ └── umd │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ ├── grunt │ │ │ │ ├── .jshintrc │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ ├── bs-sass-compile │ │ │ │ │ ├── libsass.js │ │ │ │ │ └── sass.js │ │ │ │ ├── configBridge.json │ │ │ │ └── sauce_browsers.yml │ │ │ ├── js │ │ │ │ ├── .eslintrc │ │ │ │ ├── .jscsrc │ │ │ │ ├── dist │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── alert.js.map │ │ │ │ │ ├── button.js │ │ │ │ │ ├── button.js.map │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── carousel.js.map │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.js.map │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown.js.map │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── modal.js.map │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── popover.js.map │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── scrollspy.js.map │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tab.js.map │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── tooltip.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ └── util.js.map │ │ │ │ └── src │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── util.js │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ ├── sache.json │ │ │ └── scss │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .scsslint.yml │ │ │ │ ├── _alert.scss │ │ │ │ ├── _animation.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _responsive-embed.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities-responsive.scss │ │ │ │ ├── _utilities-spacing.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-flex.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ └── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _label.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _navbar-align.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _pulls.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ └── _text-truncate.scss │ │ ├── fancybox │ │ │ ├── .bower.json │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── demo │ │ │ │ ├── 1_b.jpg │ │ │ │ ├── 1_s.jpg │ │ │ │ ├── 2_b.jpg │ │ │ │ ├── 2_s.jpg │ │ │ │ ├── 3_b.jpg │ │ │ │ ├── 3_s.jpg │ │ │ │ ├── 4_b.jpg │ │ │ │ ├── 4_s.jpg │ │ │ │ ├── 5_b.jpg │ │ │ │ ├── 5_s.jpg │ │ │ │ ├── ajax.txt │ │ │ │ ├── iframe.html │ │ │ │ └── index.html │ │ │ ├── lib │ │ │ │ ├── jquery-1.10.1.min.js │ │ │ │ ├── jquery-1.9.0.min.js │ │ │ │ └── jquery.mousewheel-3.0.6.pack.js │ │ │ ├── source │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox_loading.gif │ │ │ │ ├── fancybox_loading@2x.gif │ │ │ │ ├── fancybox_overlay.png │ │ │ │ ├── fancybox_sprite.png │ │ │ │ ├── fancybox_sprite@2x.png │ │ │ │ ├── helpers │ │ │ │ │ ├── fancybox_buttons.png │ │ │ │ │ ├── jquery.fancybox-buttons.css │ │ │ │ │ ├── jquery.fancybox-buttons.js │ │ │ │ │ ├── jquery.fancybox-media.js │ │ │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ │ │ └── jquery.fancybox-thumbs.js │ │ │ │ ├── jquery.fancybox.css │ │ │ │ ├── jquery.fancybox.js │ │ │ │ └── jquery.fancybox.pack.js │ │ │ └── sprite.psd │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ ├── external │ │ │ │ └── sizzle │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ │ ├── .jshintrc │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── location.js │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── adjustCSS.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── showHide.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── swap.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ └── var │ │ │ │ │ ├── acceptData.js │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ └── dataUser.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ ├── focusin.js │ │ │ │ ├── support.js │ │ │ │ └── trigger.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── buildFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── rtagName.js │ │ │ │ └── wrapMap.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── document.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rcssNum.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ └── react │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── bower.json │ │ │ ├── react-dom-server.js │ │ │ ├── react-dom-server.min.js │ │ │ ├── react-dom.js │ │ │ ├── react-dom.min.js │ │ │ ├── react-with-addons.js │ │ │ ├── react-with-addons.min.js │ │ │ ├── react.js │ │ │ └── react.min.js │ ├── css │ │ └── main.css │ ├── images │ │ └── gallery │ │ │ ├── sample-car-gallery.jpg │ │ │ ├── sample-car1.jpg │ │ │ ├── sample-car2.jpg │ │ │ ├── sample-car3.jpg │ │ │ ├── sample-moto-gallery.jpg │ │ │ ├── sample-moto1.jpg │ │ │ ├── sample-moto2.jpg │ │ │ ├── sample-moto3.jpg │ │ │ └── src │ │ │ ├── sample-car-gallery.jpg │ │ │ ├── sample-car1.jpg │ │ │ ├── sample-car2.jpg │ │ │ ├── sample-car3.jpg │ │ │ ├── sample-moto-gallery.jpg │ │ │ ├── sample-moto1.jpg │ │ │ ├── sample-moto2.jpg │ │ │ └── sample-moto3.jpg │ ├── index.html │ ├── js │ │ ├── app.config.js │ │ ├── app.js │ │ ├── app.routes.js │ │ ├── controllers.js │ │ ├── libs │ │ │ ├── angular-resource.js │ │ │ ├── angular-ui-router.js │ │ │ ├── angular.js │ │ │ ├── jquery.js │ │ │ └── libs.js │ │ ├── scripts │ │ │ └── scripts.js │ │ └── services.js │ └── views │ │ ├── galleries.html │ │ └── home.html │ ├── common │ └── models │ │ ├── bike.js │ │ ├── bike.json │ │ ├── gallery.js │ │ └── gallery.json │ ├── package.json │ ├── server │ ├── boot │ │ ├── _root.js │ │ └── create-sample-models.js │ ├── component-config.json │ ├── config.json │ ├── datasources.json │ ├── middleware.json │ ├── middleware.production.json │ ├── model-config.json │ └── server.js │ └── src │ ├── images │ └── gallery │ │ ├── sample-car-gallery.jpg │ │ ├── sample-car1.jpg │ │ ├── sample-car2.jpg │ │ ├── sample-car3.jpg │ │ ├── sample-moto-gallery.jpg │ │ ├── sample-moto1.jpg │ │ ├── sample-moto2.jpg │ │ └── sample-moto3.jpg │ ├── libs │ ├── bootstrap.js │ ├── jquery.fancybox.js │ └── jquery.fancybox.pack.js │ ├── scripts │ └── gallery.js │ └── scss │ ├── main.scss │ └── vendor │ ├── .csscomb.json │ ├── .scsslint.yml │ ├── _alert.scss │ ├── _animation.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _labels.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _normalize.scss │ ├── _pager.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _responsive-embed.scss │ ├── _tables.scss │ ├── _tooltip.scss │ ├── _type.scss │ ├── _utilities-responsive.scss │ ├── _utilities-spacing.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-flex.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap.scss │ └── mixins │ ├── _alert.scss │ ├── _background-variant.scss │ ├── _border-radius.scss │ ├── _breakpoints.scss │ ├── _buttons.scss │ ├── _center-block.scss │ ├── _clearfix.scss │ ├── _forms.scss │ ├── _gradients.scss │ ├── _grid-framework.scss │ ├── _grid.scss │ ├── _hide-text.scss │ ├── _hover.scss │ ├── _image.scss │ ├── _label.scss │ ├── _list-group.scss │ ├── _nav-divider.scss │ ├── _navbar-align.scss │ ├── _pagination.scss │ ├── _progress.scss │ ├── _pulls.scss │ ├── _reset-filter.scss │ ├── _reset-text.scss │ ├── _resize.scss │ ├── _responsive-visibility.scss │ ├── _screen-reader.scss │ ├── _size.scss │ ├── _tab-focus.scss │ ├── _table-row.scss │ ├── _text-emphasis.scss │ └── _text-truncate.scss ├── LICENSE └── README.md /Chapter 1/source-code/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/app.js -------------------------------------------------------------------------------- /Chapter 1/source-code/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/bin/www -------------------------------------------------------------------------------- /Chapter 1/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/package.json -------------------------------------------------------------------------------- /Chapter 1/source-code/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/public/stylesheets/style.css -------------------------------------------------------------------------------- /Chapter 1/source-code/public/stylesheets/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/public/stylesheets/style.css.map -------------------------------------------------------------------------------- /Chapter 1/source-code/public/stylesheets/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/public/stylesheets/style.sass -------------------------------------------------------------------------------- /Chapter 1/source-code/server/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/config/config.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/config/passport.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/controllers/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/controllers/comments.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/models/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/models/comments.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/models/users.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/routes/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/routes/comments.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/routes/index.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/routes/users.js -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/pages/comments.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/pages/comments.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/pages/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/pages/error.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/pages/index.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/pages/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/pages/login.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/pages/profile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/pages/profile.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/pages/signup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/pages/signup.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/partials/footer.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/partials/header.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/partials/javascript.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/partials/javascript.ejs -------------------------------------------------------------------------------- /Chapter 1/source-code/server/views/partials/stylesheet.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 1/source-code/server/views/partials/stylesheet.ejs -------------------------------------------------------------------------------- /Chapter 10/source-code/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/Dockerfile -------------------------------------------------------------------------------- /Chapter 10/source-code/Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js 2 | -------------------------------------------------------------------------------- /Chapter 10/source-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/README.md -------------------------------------------------------------------------------- /Chapter 10/source-code/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/config/passport.js -------------------------------------------------------------------------------- /Chapter 10/source-code/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/controllers/home.js -------------------------------------------------------------------------------- /Chapter 10/source-code/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/controllers/user.js -------------------------------------------------------------------------------- /Chapter 10/source-code/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/docker-compose.yml -------------------------------------------------------------------------------- /Chapter 10/source-code/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/models/User.js -------------------------------------------------------------------------------- /Chapter 10/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/package.json -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/main.css -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/main.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/_bootstrap.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_badges.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_breadcrumbs.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_close.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_code.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_forms.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_glyphicons.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_grid.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_input-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_input-groups.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_labels.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_media.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_modals.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_navs.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_pager.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_panels.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_print.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_scaffolding.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_tables.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_theme.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_thumbnails.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_type.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_variables.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/_wells.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/css/vendor/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 10/source-code/public/js/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/js/lib/bootstrap.js -------------------------------------------------------------------------------- /Chapter 10/source-code/public/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/public/js/lib/jquery.js -------------------------------------------------------------------------------- /Chapter 10/source-code/public/js/main.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | // Custom JavaScript code 3 | }); 4 | -------------------------------------------------------------------------------- /Chapter 10/source-code/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/server.js -------------------------------------------------------------------------------- /Chapter 10/source-code/test/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/test/app.test.js -------------------------------------------------------------------------------- /Chapter 10/source-code/views/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/layouts/main.html -------------------------------------------------------------------------------- /Chapter 10/source-code/views/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/pages/home.html -------------------------------------------------------------------------------- /Chapter 10/source-code/views/pages/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/pages/login.html -------------------------------------------------------------------------------- /Chapter 10/source-code/views/pages/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/pages/profile.html -------------------------------------------------------------------------------- /Chapter 10/source-code/views/pages/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/pages/signup.html -------------------------------------------------------------------------------- /Chapter 10/source-code/views/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/partials/footer.html -------------------------------------------------------------------------------- /Chapter 10/source-code/views/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 10/source-code/views/partials/header.html -------------------------------------------------------------------------------- /Chapter 2/source-code/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/app.js -------------------------------------------------------------------------------- /Chapter 2/source-code/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/bin/www -------------------------------------------------------------------------------- /Chapter 2/source-code/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/config/config.json -------------------------------------------------------------------------------- /Chapter 2/source-code/config/migrations/20160319100145-create-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/config/migrations/20160319100145-create-user.js -------------------------------------------------------------------------------- /Chapter 2/source-code/config/migrations/20160319101806-create-band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/config/migrations/20160319101806-create-band.js -------------------------------------------------------------------------------- /Chapter 2/source-code/controllers/band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/controllers/band.js -------------------------------------------------------------------------------- /Chapter 2/source-code/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/controllers/index.js -------------------------------------------------------------------------------- /Chapter 2/source-code/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/controllers/user.js -------------------------------------------------------------------------------- /Chapter 2/source-code/models/band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/models/band.js -------------------------------------------------------------------------------- /Chapter 2/source-code/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/models/index.js -------------------------------------------------------------------------------- /Chapter 2/source-code/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/models/user.js -------------------------------------------------------------------------------- /Chapter 2/source-code/mvc_mysql_app.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/mvc_mysql_app.sql -------------------------------------------------------------------------------- /Chapter 2/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/package.json -------------------------------------------------------------------------------- /Chapter 2/source-code/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/public/stylesheets/style.css -------------------------------------------------------------------------------- /Chapter 2/source-code/views/pages/band-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/views/pages/band-list.html -------------------------------------------------------------------------------- /Chapter 2/source-code/views/pages/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/views/pages/error.html -------------------------------------------------------------------------------- /Chapter 2/source-code/views/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/views/pages/index.html -------------------------------------------------------------------------------- /Chapter 2/source-code/views/pages/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/views/pages/layout.html -------------------------------------------------------------------------------- /Chapter 2/source-code/views/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/views/partials/footer.html -------------------------------------------------------------------------------- /Chapter 2/source-code/views/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 2/source-code/views/partials/head.html -------------------------------------------------------------------------------- /Chapter 3/source-code/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/app.js -------------------------------------------------------------------------------- /Chapter 3/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/package.json -------------------------------------------------------------------------------- /Chapter 3/source-code/public/images/image-placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/images/image-placeholder.jpg -------------------------------------------------------------------------------- /Chapter 3/source-code/public/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 3/source-code/public/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/javascripts/jquery.min.js -------------------------------------------------------------------------------- /Chapter 3/source-code/public/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 3/source-code/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/stylesheets/style.css -------------------------------------------------------------------------------- /Chapter 3/source-code/public/stylesheets/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/stylesheets/style.css.map -------------------------------------------------------------------------------- /Chapter 3/source-code/public/stylesheets/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/stylesheets/style.sass -------------------------------------------------------------------------------- /Chapter 3/source-code/public/videos/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/videos/sample.mp4 -------------------------------------------------------------------------------- /Chapter 3/source-code/public/videos/sample.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/public/videos/sample.webm -------------------------------------------------------------------------------- /Chapter 3/source-code/server/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/config/config.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/config/passport.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/controllers/auth.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/controllers/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/controllers/comments.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/controllers/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/controllers/images.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/controllers/index.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/controllers/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/controllers/videos.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/models/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/models/comments.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/models/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/models/images.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/models/users.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/models/videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/models/videos.js -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/comments.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/comments.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/error.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/images-gallery.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/images-gallery.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/index.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/login.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/profile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/profile.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/signup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/signup.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/pages/videos.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/pages/videos.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/partials/footer.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/partials/header.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/partials/javascript.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/partials/javascript.ejs -------------------------------------------------------------------------------- /Chapter 3/source-code/server/views/partials/stylesheet.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 3/source-code/server/views/partials/stylesheet.ejs -------------------------------------------------------------------------------- /Chapter 4/example-images/sample01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/example-images/sample01.jpg -------------------------------------------------------------------------------- /Chapter 4/example-images/sample02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/example-images/sample02.jpg -------------------------------------------------------------------------------- /Chapter 4/example-images/sample03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/example-images/sample03.jpg -------------------------------------------------------------------------------- /Chapter 4/example-images/sample04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/example-images/sample04.jpg -------------------------------------------------------------------------------- /Chapter 4/example-images/sample05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/example-images/sample05.png -------------------------------------------------------------------------------- /Chapter 4/example-images/sample07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/example-images/sample07.jpg -------------------------------------------------------------------------------- /Chapter 4/source-code/app/controllers/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/controllers/books.js -------------------------------------------------------------------------------- /Chapter 4/source-code/app/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/controllers/home.js -------------------------------------------------------------------------------- /Chapter 4/source-code/app/models/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/models/article.js -------------------------------------------------------------------------------- /Chapter 4/source-code/app/models/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/models/book.js -------------------------------------------------------------------------------- /Chapter 4/source-code/app/views/book/add-photo.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/views/book/add-photo.swig -------------------------------------------------------------------------------- /Chapter 4/source-code/app/views/book/books.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/views/book/books.swig -------------------------------------------------------------------------------- /Chapter 4/source-code/app/views/book/posted-photo.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/views/book/posted-photo.swig -------------------------------------------------------------------------------- /Chapter 4/source-code/app/views/error.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/views/error.swig -------------------------------------------------------------------------------- /Chapter 4/source-code/app/views/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/views/index.swig -------------------------------------------------------------------------------- /Chapter 4/source-code/app/views/layout.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/app/views/layout.swig -------------------------------------------------------------------------------- /Chapter 4/source-code/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/bower.json -------------------------------------------------------------------------------- /Chapter 4/source-code/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/config/config.js -------------------------------------------------------------------------------- /Chapter 4/source-code/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/config/env.js -------------------------------------------------------------------------------- /Chapter 4/source-code/config/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/config/express.js -------------------------------------------------------------------------------- /Chapter 4/source-code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/gulpfile.js -------------------------------------------------------------------------------- /Chapter 4/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 4/source-code/package.json -------------------------------------------------------------------------------- /Chapter 5/source-code/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app.js -------------------------------------------------------------------------------- /Chapter 5/source-code/app/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/controllers/home.js -------------------------------------------------------------------------------- /Chapter 5/source-code/app/controllers/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/controllers/locations.js -------------------------------------------------------------------------------- /Chapter 5/source-code/app/models/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/models/article.js -------------------------------------------------------------------------------- /Chapter 5/source-code/app/models/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/models/location.js -------------------------------------------------------------------------------- /Chapter 5/source-code/app/models/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/models/store.js -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/pages/add-location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/pages/add-location.html -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/pages/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/pages/error.html -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/pages/index.html -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/pages/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/pages/layout.html -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/pages/locations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/pages/locations.html -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/partials/footer.html -------------------------------------------------------------------------------- /Chapter 5/source-code/app/views/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/app/views/partials/head.html -------------------------------------------------------------------------------- /Chapter 5/source-code/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/bower.json -------------------------------------------------------------------------------- /Chapter 5/source-code/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/config/config.js -------------------------------------------------------------------------------- /Chapter 5/source-code/config/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/config/express.js -------------------------------------------------------------------------------- /Chapter 5/source-code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/gulpfile.js -------------------------------------------------------------------------------- /Chapter 5/source-code/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/locations.json -------------------------------------------------------------------------------- /Chapter 5/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/package.json -------------------------------------------------------------------------------- /Chapter 5/source-code/public/images/pin-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/public/images/pin-off.png -------------------------------------------------------------------------------- /Chapter 5/source-code/public/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/public/images/pin.png -------------------------------------------------------------------------------- /Chapter 5/source-code/public/js/getCurrentPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 5/source-code/public/js/getCurrentPosition.js -------------------------------------------------------------------------------- /Chapter 6/source-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/README.md -------------------------------------------------------------------------------- /Chapter 6/source-code/client/README.md: -------------------------------------------------------------------------------- 1 | ## Client 2 | 3 | This is the place for your application front-end files. 4 | -------------------------------------------------------------------------------- /Chapter 6/source-code/client/images/heritage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/client/images/heritage.jpg -------------------------------------------------------------------------------- /Chapter 6/source-code/client/images/knucklehead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/client/images/knucklehead.jpg -------------------------------------------------------------------------------- /Chapter 6/source-code/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/client/index.html -------------------------------------------------------------------------------- /Chapter 6/source-code/client/js/motorcycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/client/js/motorcycles.js -------------------------------------------------------------------------------- /Chapter 6/source-code/client/js/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/client/js/reviews.js -------------------------------------------------------------------------------- /Chapter 6/source-code/common/models/motorcycle.js: -------------------------------------------------------------------------------- 1 | module.exports = function(Motorcycle) { 2 | 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter 6/source-code/common/models/motorcycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/common/models/motorcycle.json -------------------------------------------------------------------------------- /Chapter 6/source-code/common/models/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/common/models/review.js -------------------------------------------------------------------------------- /Chapter 6/source-code/common/models/review.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/common/models/review.json -------------------------------------------------------------------------------- /Chapter 6/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/package.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/boot/_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/boot/_root.js -------------------------------------------------------------------------------- /Chapter 6/source-code/server/boot/create-sample-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/boot/create-sample-models.js -------------------------------------------------------------------------------- /Chapter 6/source-code/server/component-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/component-config.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/config.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/datasources.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/middleware.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/middleware.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/middleware.production.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/model-config.json -------------------------------------------------------------------------------- /Chapter 6/source-code/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 6/source-code/server/server.js -------------------------------------------------------------------------------- /Chapter 7/source-code/README.md: -------------------------------------------------------------------------------- 1 | # Chat Application with Node.js and Socket.io 2 | -------------------------------------------------------------------------------- /Chapter 7/source-code/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/app.js -------------------------------------------------------------------------------- /Chapter 7/source-code/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/bower.json -------------------------------------------------------------------------------- /Chapter 7/source-code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/gulpfile.js -------------------------------------------------------------------------------- /Chapter 7/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/package.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/.bower.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/Gemfile -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/README.md -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/bower.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/dist/js/umd/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/dist/js/umd/tab.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/dist/js/umd/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/dist/js/umd/util.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/.eslintrc -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/package.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/package.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/sache.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_labels.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_pager.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/.bower.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/README.md -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/bower.json -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/.jshintrc -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/ajax.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/attributes.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/core.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/core/access.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/core/init.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/css.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/css/support.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/data.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/deferred.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/effects.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/event.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/event/support.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/intro.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/jquery.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/offset.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/queue.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/serialize.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/traversing.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/push.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/support.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/components/jquery/src/wrap.js -------------------------------------------------------------------------------- /Chapter 7/source-code/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/css/style.css -------------------------------------------------------------------------------- /Chapter 7/source-code/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/public/js/main.js -------------------------------------------------------------------------------- /Chapter 7/source-code/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/routes/index.js -------------------------------------------------------------------------------- /Chapter 7/source-code/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/views/error.ejs -------------------------------------------------------------------------------- /Chapter 7/source-code/views/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/views/footer.ejs -------------------------------------------------------------------------------- /Chapter 7/source-code/views/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/views/header.ejs -------------------------------------------------------------------------------- /Chapter 7/source-code/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 7/source-code/views/index.ejs -------------------------------------------------------------------------------- /Chapter 8/sample-images/old-car-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/sample-images/old-car-1.jpg -------------------------------------------------------------------------------- /Chapter 8/sample-images/old-car-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/sample-images/old-car-2.jpg -------------------------------------------------------------------------------- /Chapter 8/sample-images/old-car-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/sample-images/old-car-3.jpg -------------------------------------------------------------------------------- /Chapter 8/sample-images/old-car-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/sample-images/old-car-hero.jpg -------------------------------------------------------------------------------- /Chapter 8/sample-images/sample-blog-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/sample-images/sample-blog-image.jpg -------------------------------------------------------------------------------- /Chapter 8/source-code/Procfile: -------------------------------------------------------------------------------- 1 | web: node keystone.js 2 | -------------------------------------------------------------------------------- /Chapter 8/source-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/README.md -------------------------------------------------------------------------------- /Chapter 8/source-code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/gulpfile.js -------------------------------------------------------------------------------- /Chapter 8/source-code/keystone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/keystone.js -------------------------------------------------------------------------------- /Chapter 8/source-code/models/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/models/About.js -------------------------------------------------------------------------------- /Chapter 8/source-code/models/Enquiry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/models/Enquiry.js -------------------------------------------------------------------------------- /Chapter 8/source-code/models/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/models/Gallery.js -------------------------------------------------------------------------------- /Chapter 8/source-code/models/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/models/Post.js -------------------------------------------------------------------------------- /Chapter 8/source-code/models/PostCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/models/PostCategory.js -------------------------------------------------------------------------------- /Chapter 8/source-code/models/UserAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/models/UserAdmin.js -------------------------------------------------------------------------------- /Chapter 8/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/package.json -------------------------------------------------------------------------------- /Chapter 8/source-code/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/favicon.ico -------------------------------------------------------------------------------- /Chapter 8/source-code/public/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/images/.DS_Store -------------------------------------------------------------------------------- /Chapter 8/source-code/public/images/header-bg-1920x1440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/images/header-bg-1920x1440.jpg -------------------------------------------------------------------------------- /Chapter 8/source-code/public/images/logo-email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/images/logo-email.gif -------------------------------------------------------------------------------- /Chapter 8/source-code/public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/images/logo.svg -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/affix.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/alert.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/bootstrap-3.3.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/bootstrap-3.3.5.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/bootstrap-3.3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/bootstrap-3.3.5.min.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/button.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/carousel.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/collapse.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/dropdown.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/modal.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/npm.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/popover.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/scrollspy.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/tab.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/tooltip.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/bootstrap/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/bootstrap/transition.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/jquery/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/jquery/jquery-1.11.3.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/jquery/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/jquery/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/jquery/jquery-2.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/jquery/jquery-2.1.4.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/jquery/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/js/jquery/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /Chapter 8/source-code/public/js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/_bootstrap.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/_bootswatch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/_bootswatch.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_close.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_code.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_forms.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_grid.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_media.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_navs.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_pager.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_print.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_theme.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_type.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/bootstrap/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/bootstrap/bootstrap/_wells.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/site.css -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/site.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/site/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/site/_layout.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/site/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/site/_mixins.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/public/styles/site/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/public/styles/site/_variables.scss -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/emails.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/index.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/middleware.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/views/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/views/about.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/views/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/views/blog.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/views/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/views/contact.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/views/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/views/gallery.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/views/index.js -------------------------------------------------------------------------------- /Chapter 8/source-code/routes/views/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/routes/views/post.js -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/default/layouts/default.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/default/layouts/default.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/default/views/blog.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/default/views/blog.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/default/views/contact.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/default/views/contact.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/default/views/gallery.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/default/views/gallery.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/default/views/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/default/views/index.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/default/views/post.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/default/views/post.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/layouts/default.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/layouts/default.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/views/about.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/views/about.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/views/blog.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/views/blog.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/views/contact.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/views/contact.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/views/gallery.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/views/gallery.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/views/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/views/index.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/templates/themes/newBlog/views/post.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/templates/themes/newBlog/views/post.swig -------------------------------------------------------------------------------- /Chapter 8/source-code/updates/0.0.1-admins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 8/source-code/updates/0.0.1-admins.js -------------------------------------------------------------------------------- /Chapter 9/source-code/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/.bowerrc -------------------------------------------------------------------------------- /Chapter 9/source-code/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/.editorconfig -------------------------------------------------------------------------------- /Chapter 9/source-code/.eslintignore: -------------------------------------------------------------------------------- 1 | /client/ -------------------------------------------------------------------------------- /Chapter 9/source-code/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "loopback" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/.eslintrc.json -------------------------------------------------------------------------------- /Chapter 9/source-code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/.gitignore -------------------------------------------------------------------------------- /Chapter 9/source-code/.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-loopback": {} 3 | } -------------------------------------------------------------------------------- /Chapter 9/source-code/Procfile: -------------------------------------------------------------------------------- 1 | web: slc run 2 | -------------------------------------------------------------------------------- /Chapter 9/source-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/README.md -------------------------------------------------------------------------------- /Chapter 9/source-code/arc-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/arc-manager.json -------------------------------------------------------------------------------- /Chapter 9/source-code/bin/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/bin/deploy.sh -------------------------------------------------------------------------------- /Chapter 9/source-code/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/README.md: -------------------------------------------------------------------------------- 1 | ## Client 2 | 3 | This is the place for your application front-end files. 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/.bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/Gemfile -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/README.md -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/.eslintrc -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/package.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/package.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/sache.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_labels.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_pager.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/.bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/.gitattributes -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/README.md -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/1_b.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/1_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/1_s.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/2_b.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/2_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/2_s.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/3_b.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/3_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/3_s.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/4_b.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/4_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/4_s.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/5_b.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/5_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/5_s.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/ajax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/ajax.txt -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/iframe.html -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/demo/index.html -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/source/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/source/blank.gif -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/fancybox/sprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/fancybox/sprite.psd -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/.bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/README.md -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/.jshintrc -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/ajax.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/attributes.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/core.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/core/access.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/core/init.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/css.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/css/support.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/data.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/deferred.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/effects.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/event.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/event/support.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/intro.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/jquery.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/offset.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/queue.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/serialize.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/traversing.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/push.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/support.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/jquery/src/wrap.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/.bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/LICENSE -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/PATENTS -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/bower.json -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/react-dom-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/react-dom-server.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/react-dom.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/react-dom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/react-dom.min.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/react-with-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/react-with-addons.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/react.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/components/react/react.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/components/react/react.min.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/css/main.css -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-car-gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-car-gallery.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-car1.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-car2.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-car3.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-moto-gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-moto-gallery.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-moto1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-moto1.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-moto2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-moto2.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/sample-moto3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/sample-moto3.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/src/sample-car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/src/sample-car1.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/src/sample-car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/src/sample-car2.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/src/sample-car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/src/sample-car3.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/src/sample-moto1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/src/sample-moto1.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/src/sample-moto2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/src/sample-moto2.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/images/gallery/src/sample-moto3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/images/gallery/src/sample-moto3.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/index.html -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/app.config.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/app.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/app.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/app.routes.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/controllers.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/libs/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/libs/angular-resource.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/libs/angular-ui-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/libs/angular-ui-router.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/libs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/libs/angular.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/libs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/libs/jquery.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/libs/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/libs/libs.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/scripts/scripts.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/js/services.js -------------------------------------------------------------------------------- /Chapter 9/source-code/client/views/galleries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/views/galleries.html -------------------------------------------------------------------------------- /Chapter 9/source-code/client/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/client/views/home.html -------------------------------------------------------------------------------- /Chapter 9/source-code/common/models/bike.js: -------------------------------------------------------------------------------- 1 | module.exports = function(Bike) { 2 | 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/common/models/bike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/common/models/bike.json -------------------------------------------------------------------------------- /Chapter 9/source-code/common/models/gallery.js: -------------------------------------------------------------------------------- 1 | module.exports = function(Gallery) { 2 | 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter 9/source-code/common/models/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/common/models/gallery.json -------------------------------------------------------------------------------- /Chapter 9/source-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/package.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/boot/_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/boot/_root.js -------------------------------------------------------------------------------- /Chapter 9/source-code/server/boot/create-sample-models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/boot/create-sample-models.js -------------------------------------------------------------------------------- /Chapter 9/source-code/server/component-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/component-config.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/config.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/datasources.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/middleware.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/middleware.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/middleware.production.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/model-config.json -------------------------------------------------------------------------------- /Chapter 9/source-code/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/server/server.js -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-car-gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-car-gallery.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-car1.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-car2.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-car3.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-moto-gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-moto-gallery.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-moto1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-moto1.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-moto2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-moto2.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/images/gallery/sample-moto3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/images/gallery/sample-moto3.jpg -------------------------------------------------------------------------------- /Chapter 9/source-code/src/libs/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/libs/bootstrap.js -------------------------------------------------------------------------------- /Chapter 9/source-code/src/libs/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/libs/jquery.fancybox.js -------------------------------------------------------------------------------- /Chapter 9/source-code/src/libs/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/libs/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scripts/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scripts/gallery.js -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/main.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/.csscomb.json -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/.scsslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/.scsslint.yml -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_alert.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_animation.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_breadcrumb.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_button-group.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_buttons.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_card.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_carousel.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_close.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_code.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_custom-forms.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_dropdown.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_forms.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_grid.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_images.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_input-group.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_jumbotron.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_labels.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_list-group.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_media.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_mixins.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_modal.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_nav.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_navbar.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_normalize.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_pager.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_pagination.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_popover.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_print.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_progress.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_reboot.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_responsive-embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_responsive-embed.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_tables.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_tooltip.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_type.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_utilities-responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_utilities-responsive.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_utilities-spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_utilities-spacing.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_utilities.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/_variables.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/bootstrap-flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/bootstrap-flex.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/bootstrap-grid.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/bootstrap-reboot.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/bootstrap.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_alert.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_border-radius.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_buttons.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_center-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_center-block.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_clearfix.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_forms.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_gradients.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_grid.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_hide-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_hide-text.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_hover.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_image.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_label.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_list-group.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_navbar-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_navbar-align.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_pagination.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_progress.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_pulls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_pulls.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_reset-filter.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_reset-text.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_resize.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_size.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_tab-focus.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_table-row.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /Chapter 9/source-code/src/scss/vendor/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/Chapter 9/source-code/src/scss/vendor/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Node.JS-6.x-Blueprints/HEAD/README.md --------------------------------------------------------------------------------