├── .gitattributes ├── .gitignore ├── App Structure.md ├── Console Logging.md ├── Cookbook Conventions.md ├── Dependencies.md ├── Development Tools.md ├── Event Cycle.md ├── File IO.md ├── File Structure.md ├── General Advice.md ├── Installation.md ├── Meteor Style Guide.md ├── Namespacing.md ├── OSI Model Application Layer.md ├── OSI Model Data Layer.md ├── OSI Model Data-Link Layer.md ├── OSI Model Network Layer.md ├── OSI Model Physical Layer.md ├── OSI Model Presentation Layer.md ├── OSI Model Transport Layer.md ├── Packages.md ├── Punctuation.md ├── Quickstart.md ├── README.md ├── Refactoring with Test Driven Development.md ├── Reserved Words.md ├── SUMMARY.md ├── Site Configuration.md ├── Site Mechanics.md ├── Syntax.md ├── Terminology.md ├── Test Driven Development.md ├── The Refactoring Process.md ├── Video IO.md ├── WebKit Browsers.md ├── WebStorm IDE.md ├── Writing Acceptance Tests.md └── _book ├── .gitignore └── gitbook ├── app.js ├── fonts ├── fontawesome │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff └── helvetica │ ├── normal.eot │ ├── normal.svg │ ├── normal.ttf │ ├── normal.woff │ ├── ultralight.eot │ ├── ultralight.svg │ ├── ultralight.ttf │ └── ultralight.woff ├── images └── favicon.ico ├── jsrepl ├── engines │ └── javascript-default.js ├── jsrepl.js ├── langs │ └── javascript │ │ └── jsrepl_js.js ├── sandbox.html └── sandbox.js ├── print.css └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/.gitignore -------------------------------------------------------------------------------- /App Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/App Structure.md -------------------------------------------------------------------------------- /Console Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Console Logging.md -------------------------------------------------------------------------------- /Cookbook Conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Cookbook Conventions.md -------------------------------------------------------------------------------- /Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Dependencies.md -------------------------------------------------------------------------------- /Development Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Development Tools.md -------------------------------------------------------------------------------- /Event Cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Event Cycle.md -------------------------------------------------------------------------------- /File IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/File IO.md -------------------------------------------------------------------------------- /File Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/File Structure.md -------------------------------------------------------------------------------- /General Advice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/General Advice.md -------------------------------------------------------------------------------- /Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Installation.md -------------------------------------------------------------------------------- /Meteor Style Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Meteor Style Guide.md -------------------------------------------------------------------------------- /Namespacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Namespacing.md -------------------------------------------------------------------------------- /OSI Model Application Layer.md: -------------------------------------------------------------------------------- 1 | # OSI Model Application Layer 2 | -------------------------------------------------------------------------------- /OSI Model Data Layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/OSI Model Data Layer.md -------------------------------------------------------------------------------- /OSI Model Data-Link Layer.md: -------------------------------------------------------------------------------- 1 | # OSI Model Data-Link Layer 2 | -------------------------------------------------------------------------------- /OSI Model Network Layer.md: -------------------------------------------------------------------------------- 1 | # OSI Model Network Layer 2 | -------------------------------------------------------------------------------- /OSI Model Physical Layer.md: -------------------------------------------------------------------------------- 1 | # OSI Model Physical Layer 2 | -------------------------------------------------------------------------------- /OSI Model Presentation Layer.md: -------------------------------------------------------------------------------- 1 | # OSI Model Presentation Layer 2 | -------------------------------------------------------------------------------- /OSI Model Transport Layer.md: -------------------------------------------------------------------------------- 1 | # OSI Model Transport Layer 2 | -------------------------------------------------------------------------------- /Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Packages.md -------------------------------------------------------------------------------- /Punctuation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Punctuation.md -------------------------------------------------------------------------------- /Quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Quickstart.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/README.md -------------------------------------------------------------------------------- /Refactoring with Test Driven Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Refactoring with Test Driven Development.md -------------------------------------------------------------------------------- /Reserved Words.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Reserved Words.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Site Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Site Configuration.md -------------------------------------------------------------------------------- /Site Mechanics.md: -------------------------------------------------------------------------------- 1 | # Site Mechanics 2 | -------------------------------------------------------------------------------- /Syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Syntax.md -------------------------------------------------------------------------------- /Terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Terminology.md -------------------------------------------------------------------------------- /Test Driven Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Test Driven Development.md -------------------------------------------------------------------------------- /The Refactoring Process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/The Refactoring Process.md -------------------------------------------------------------------------------- /Video IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Video IO.md -------------------------------------------------------------------------------- /WebKit Browsers.md: -------------------------------------------------------------------------------- 1 | # WebKit Browsers 2 | -------------------------------------------------------------------------------- /WebStorm IDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/WebStorm IDE.md -------------------------------------------------------------------------------- /Writing Acceptance Tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/Writing Acceptance Tests.md -------------------------------------------------------------------------------- /_book/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/.gitignore -------------------------------------------------------------------------------- /_book/gitbook/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/app.js -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/normal.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/normal.eot -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/normal.svg -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/normal.ttf -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/normal.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/ultralight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/ultralight.eot -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/ultralight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/ultralight.svg -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/ultralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/ultralight.ttf -------------------------------------------------------------------------------- /_book/gitbook/fonts/helvetica/ultralight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/fonts/helvetica/ultralight.woff -------------------------------------------------------------------------------- /_book/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /_book/gitbook/jsrepl/engines/javascript-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/jsrepl/engines/javascript-default.js -------------------------------------------------------------------------------- /_book/gitbook/jsrepl/jsrepl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/jsrepl/jsrepl.js -------------------------------------------------------------------------------- /_book/gitbook/jsrepl/langs/javascript/jsrepl_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/jsrepl/langs/javascript/jsrepl_js.js -------------------------------------------------------------------------------- /_book/gitbook/jsrepl/sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/jsrepl/sandbox.html -------------------------------------------------------------------------------- /_book/gitbook/jsrepl/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/jsrepl/sandbox.js -------------------------------------------------------------------------------- /_book/gitbook/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/print.css -------------------------------------------------------------------------------- /_book/gitbook/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrayne/MeteorCookbookGitbook/HEAD/_book/gitbook/style.css --------------------------------------------------------------------------------