├── .gitignore
├── README.md
├── SUMMARY.md
├── _layouts
└── website
│ └── page.html
├── book.json
├── cover.jpg
├── cover_small.jpg
├── gtm-analytics.js
├── images
├── browsers-work.png
├── dns.jpg
├── fd-devs-for.jpeg
├── front-end-salary.png
├── front-end-skills.png
├── full-stack.jpg
├── host.jpg
├── making-fd.png
├── spectrum.png
├── stacks-change.jpg
├── statcounter.png
├── things.jpg
├── web-api.png
├── web-tech-employed.jpg
└── what-is-front-end-dev.png
├── learning.md
├── learning
├── accessibility.md
├── animation.md
├── api.md
├── browser-dev-tools.md
├── browsers.md
├── build.md
├── cli.md
├── courses.md
├── direct-learning.md
├── dns.md
├── dom.md
├── fonts.md
├── front-end-apps.md
├── front-end.md
├── headless-browsers.md
├── hosting.md
├── html-css.md
├── http-networks.md
├── internet.md
├── javascript.md
├── json.md
├── learn-from.md
├── module.md
├── multi-thing-dev.md
├── news-podcasts.md
├── node.md
├── offline.md
├── package-manager.md
├── perf.md
├── security.md
├── self-direct-learning.md
├── seo.md
├── static.md
├── templates.md
├── test.md
├── ui-design-patterns.md
├── version-control.md
└── web-api.md
├── myIntro.md
├── package-lock.json
├── package.json
├── practice.md
├── practice
├── fd-dev-for.md
├── interview-q.md
├── jobboards.md
├── making-fd.md
├── myth.md
├── salaries.md
├── skills.md
├── team.md
├── tech-employed-by-fd.md
└── types-of-front-end-dev.md
├── scripts
└── pathway.js
├── styles
├── ebook.css
└── website.css
├── template.md
├── tools.md
├── tools
├── animation.md
├── apps.md
├── baas.md
├── browsedocs.md
├── browser.md
├── charting.md
├── cms.md
├── code-editor.md
├── comm.md
├── css.md
├── db.md
├── deploy.md
├── diagram.md
├── dom.md
├── error.md
├── fonts.md
├── general-tools.md
├── graphics.md
├── hosting.md
├── html.md
├── http.md
├── js.md
├── json.md
├── loaders.md
├── offline.md
├── perf.md
├── project-hosting.md
├── proto.md
├── repo.md
├── scaffolding.md
├── security.md
├── seo.md
├── static.md
├── svg.md
├── task.md
├── templates.md
├── testing.md
├── ui.md
└── uptime.md
└── what-is-a-FD.md
/.gitignore:
--------------------------------------------------------------------------------
1 | # Node rules:
2 | ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
3 | .grunt
4 |
5 | ## Dependency directory
6 | ## Commenting this out is preferred by some people, see
7 | ## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
8 | node_modules
9 |
10 | # Book build output
11 | _book
12 |
13 | # eBook build output
14 | *.epub
15 | *.mobi
16 | *.pdf
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | # AVAILABLE NOW: [Front-End Developer Handbook 2019](https://frontendmasters.com/books/front-end-handbook/2019/)
3 |
4 | ***
5 |
6 | ## Front-End Developer Handbook 2016
7 |
8 | Written by [Cody Lindley](http://codylindley.com/) sponsored by — [Frontend Masters](https://frontendmasters.com/)
9 |
10 | This is a guide that anyone could use to learn about the practice of front-end development. It broadly outlines and discusses the practice of front-end engineering: how to learn it and what tools are used when practicing it in 2016.
11 |
12 | It is specifically written with the intention of being a professional resource for potential and currently practicing front-end developers to equip themselves with learning materials and development tools. Secondarily, it can be used by managers, CTOs, instructors, and head hunters to gain insights into the practice of front-end development.
13 |
14 | The content of the handbook favors web technologies (HTML, CSS, DOM, and JavaScript) and those solutions that are directly built on top of these open technologies. The materials referenced and discussed in the book are either best in class or the current offering to a problem.
15 |
16 | The book should not be considered a comprehensive outline of all resources available to a front-end developer. The value of the book is tied up in a terse, focused, and timely curation of just enough categorical information so as not to overwhelm anyone on any one particular subject matter.
17 |
18 | The intention is to release an update to the content yearly.
19 |
20 | The handbook is divided into three parts.
21 |
22 | ## Part I. The Front-End Practice
23 |
24 | Part one broadly describes the practice of front-end engineering.
25 |
26 | ## Part II: Learning Front-End Development
27 |
28 | Part two identifies self-directed and direct resources for learning to become a front-end developer.
29 |
30 | ## Part III: Front-End Development Tools
31 |
32 | Part three briefly explains and identifies tools of the trade.
33 |
34 | ***
35 |
36 | **Read Online At**:
37 |
38 | * [frontendhandbook.com](http://www.frontendhandbook.com/)
39 |
40 | **Download a .pdf, .epub, or .mobi File From**:
41 |
42 | * [https://www.gitbook.com/book/frontendmasters/front-end-handbook/details](https://www.gitbook.com/book/frontendmasters/front-end-handbook/details)
43 |
44 | ***
45 |
46 | 
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/SUMMARY.md:
--------------------------------------------------------------------------------
1 | # Summary
2 |
3 | * [What Is a Front-End Developer?](what-is-a-FD.md)
4 | * [Part I: The Front-End Practice](practice.md)
5 | * [Front-End Jobs Titles](practice/types-of-front-end-dev.md)
6 | * [Common Web Tech Employed](practice/tech-employed-by-fd.md)
7 | * [Front-End Dev Skills](practice/skills.md)
8 | * [Front-End Devs Develop For...](practice/fd-dev-for.md)
9 | * [Front-End on a Team](practice/team.md)
10 |
11 | * [Generalist Myth](practice/myth.md)
12 | * [Front-End interview questions](practice/interview-q.md)
13 | * [Front-End Job Boards](practice/jobboards.md)
14 | * [Front-End Salaries](practice/salaries.md)
15 | * [How FDs Are Made](practice/making-fd.md)
16 | * [Part II: Learning Front-End Dev](learning.md)
17 | * [Self Directed Learning](learning/self-direct-learning.md)
18 | * [Learn Internet/Web](learning/internet.md)
19 | * [Learn Web Browsers](learning/browsers.md)
20 | * [Learn DNS](learning/dns.md)
21 | * [Learn HTTP/Networks](learning/http-networks.md)
22 | * [Learn Web Hosting](learning/hosting.md)
23 | * [Learn General Front-End Dev](learning/front-end.md)
24 | * [Learn UI/Interaction Design](learning/ui-design-patterns.md)
25 | * [Learn HTML & CSS](learning/html-css.md)
26 | * [Learn SEO](learning/seo.md)
27 | * [Learn JavaScript](learning/javascript.md)
28 | * [Learn Web Animation](learning/animation.md)
29 | * [Learn DOM, BOM & jQuery](learning/dom.md)
30 | * [Learn Web Fonts](learning/fonts.md)
31 | * [Learn Accessibility](learning/accessibility.md)
32 | * [Learn Web/Browser APIs](learning/web-api.md)
33 | * [Learn JSON](learning/json.md)
34 | * [Learn JS Templates](learning/templates.md)
35 | * [Learn Static Site Generators](learning/static.md)
36 | * [Learn Front-End App Architecture](learning/front-end-apps.md)
37 | * [Learn Interface/API Design](learning/api.md)
38 | * [Learn Web Dev Tools](learning/browser-dev-tools.md)
39 | * [Learn Command Line](learning/cli.md)
40 | * [Learn Node.js](learning/node.md)
41 | * [Learn Module Loader](learning/module.md)
42 | * [Learn Package Managers](learning/package-manager.md)
43 | * [Learn Version Control](learning/version-control.md)
44 | * [Learn Build & Task Automation](learning/build.md)
45 | * [Learn Site Performance Optimization](learning/perf.md)
46 | * [Learn JS Testing](learning/test.md)
47 | * [Learn Headless Browsers](learning/headless-browsers.md)
48 | * [Learn Offline Dev](learning/offline.md)
49 | * [Learn Security](learning/security.md)
50 | * [Learn Multi-Thing Dev (e.g., RWD)](learning/multi-thing-dev.md)
51 | * [Directed Learning](learning/direct-learning.md)
52 | * [Front-End Schools, Courses, & Bootcamps](learning/courses.md)
53 | * [Front-End Devs to Learn From](learning/learn-from.md)
54 | * [Newsletters, News, & Podcasts](learning/news-podcasts.md)
55 | * [Part III: Front-End Dev Tools](tools.md)
56 | * [General Front-End Dev Tools](tools/general-tools.md)
57 | * [Doc/API Browsing Tools](tools/browsedocs.md)
58 | * [SEO Tools](tools/seo.md)
59 | * [Prototyping & Wireframing Tools](tools/proto.md)
60 | * [Diagramming Tools](tools/diagram.md)
61 | * [HTTP/Network Tools](tools/http.md)
62 | * [Code Editing Tools](tools/code-editor.md)
63 | * [Browser Tools](tools/browser.md)
64 | * [HTML Tools](tools/html.md)
65 | * [CSS Tools](tools/css.md)
66 | * [DOM Tools](tools/dom.md)
67 | * [JavaScript Tools](tools/js.md)
68 | * [Static Site Generators Tools](tools/static.md)
69 | * [App (Desktop, Mobile, Tablet, etc.) Tools](tools/apps.md)
70 | * [Scaffolding Tools](tools/scaffolding.md)
71 | * [Templating Tools](tools/templates.md)
72 | * [UI Widgets & Components Tools](tools/ui.md)
73 | * [Data Visualization (e.g., Charts) Tools](tools/charting.md)
74 | * [Graphics (e.g., SVG, canvas, webgl) Tools](tools/graphics.md)
75 | * [Animation Tools](tools/animation.md)
76 | * [JSON Tools](tools/json.md)
77 | * [Testing Framework Tools](tools/testing.md)
78 | * [Data Storage Tools](tools/db.md)
79 | * [Module/Package Loading Tools](tools/loaders.md)
80 | * [Module/Package Repo. Tools](tools/repo.md)
81 | * [Web/Cloud/Static Hosting Tools](tools/hosting.md)
82 | * [Project Management & Code Hosting](tools/project-hosting.md)
83 | * [Collaboration & Communication Tools](tools/comm.md)
84 | * [CMS Hosted/API Tools](tools/cms.md)
85 | * [BAAS (for Front-End Devs) Tools](tools/baas.md)
86 | * [Offline Tools](tools/offline.md)
87 | * [Security Tools](tools/security.md)
88 | * [Tasking (aka Build) Tools](tools/task.md)
89 | * [Deployment Tools](tools/deploy.md)
90 | * [Site/App Monitoring Tools](tools/uptime.md)
91 | * [JS Error Monitoring Tools](tools/error.md)
92 | * [Performance Tools](tools/perf.md)
93 |
94 |
95 |
96 |
--------------------------------------------------------------------------------
/_layouts/website/page.html:
--------------------------------------------------------------------------------
1 | {% extends template.self %}
2 |
3 | {% block body %}
4 |
13 |
14 | {{ super() }}
15 |
16 |
29 |
30 | {% endblock %}
31 |
--------------------------------------------------------------------------------
/book.json:
--------------------------------------------------------------------------------
1 | {
2 | "structure": {
3 | "readme": "myIntro.md"
4 | },
5 | "plugins": ["scripts"],
6 | "pluginsConfig": {
7 | "scripts": {
8 | "files": [
9 | "./gtm-analytics.js"
10 | ]
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/cover.jpg
--------------------------------------------------------------------------------
/cover_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/cover_small.jpg
--------------------------------------------------------------------------------
/gtm-analytics.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Google Tag Manager Tracking
3 | */
4 | (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
5 | new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
6 | j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
7 | '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
8 | })(window,document,'script','dataLayer','GTM-NF375C');
9 | /*
10 | * End Google Tag Manager
11 | */
12 |
--------------------------------------------------------------------------------
/images/browsers-work.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/browsers-work.png
--------------------------------------------------------------------------------
/images/dns.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/dns.jpg
--------------------------------------------------------------------------------
/images/fd-devs-for.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/fd-devs-for.jpeg
--------------------------------------------------------------------------------
/images/front-end-salary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/front-end-salary.png
--------------------------------------------------------------------------------
/images/front-end-skills.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/front-end-skills.png
--------------------------------------------------------------------------------
/images/full-stack.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/full-stack.jpg
--------------------------------------------------------------------------------
/images/host.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/host.jpg
--------------------------------------------------------------------------------
/images/making-fd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/making-fd.png
--------------------------------------------------------------------------------
/images/spectrum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/spectrum.png
--------------------------------------------------------------------------------
/images/stacks-change.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/stacks-change.jpg
--------------------------------------------------------------------------------
/images/statcounter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/statcounter.png
--------------------------------------------------------------------------------
/images/things.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/things.jpg
--------------------------------------------------------------------------------
/images/web-api.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/web-api.png
--------------------------------------------------------------------------------
/images/web-tech-employed.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/web-tech-employed.jpg
--------------------------------------------------------------------------------
/images/what-is-front-end-dev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FrontendMasters/front-end-handbook/0f31dec730e6c20179f029f9cc9271a67a65036b/images/what-is-front-end-dev.png
--------------------------------------------------------------------------------
/learning.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Part II: Learning
6 |
7 | Part two identifies self-directed (i.e., at your own pace when you want) and directed (i.e., formal class room specific times and dates) resources for learning to become a front-end developer.
8 |
9 | Note that just because a learning resource is listed, or a category of learning is documented, I am not suggesting that a front-end developer learn everything. That would be absurd. Choose your own slice of expertise within the profession. I'm providing the possibilities of what could be mastered in the field.
--------------------------------------------------------------------------------
/learning/accessibility.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Accessibility
6 |
7 | > Accessibility refers to the design of products, devices, services, or environments for people with disabilities. The concept of accessible design ensures both “direct access” (i.e., unassisted) and "indirect access" meaning compatibility with a person's assistive technology (for example, computer screen readers).
8 | >
9 | >Accessibility can be viewed as the "ability to access" and benefit from some system or entity. The concept focuses on enabling access for people with disabilities, or special needs, or enabling access through the use of assistive technology; however, research and development in accessibility brings benefits to everyone.
10 | >
11 | >Accessibility is not to be confused with usability, which is the extent to which a product (such as a device, service, or environment) can be used by specified users to achieve specified goals with effectiveness, efficiency and satisfaction in a specified context of use.
12 | >
13 | >Accessibility is strongly related to universal design which is the process of creating products that are usable by people with the widest possible range of abilities, operating within the widest possible range of situations. This is about making things accessible to all people (whether they have a disability or not).
14 |
15 | >— [Wikipedia](https://en.wikipedia.org/wiki/Accessibility)
16 |
17 | ##### General Learning:
18 |
19 | * [Foundations of UX: Accessibility](http://www.lynda.com/Accessibility-tutorials/Foundations-UX-Accessibility/435008-2.html) [watch][$]
20 | * [How HTML elements are supported by screen readers](http://thepaciellogroup.github.io/AT-browser-tests/?utm_source=html5weekly&utm_medium=email) [read]
21 | * [Introduction to Web Accessibility](https://webaccessibility.withgoogle.com/course) - Google Open Online Education [watch]
22 | * [Introduction to Web Accessibility](https://www.w3.org/WAI/intro/accessibility.php) - WAI [read]
23 | * [Universal Design for Web Applications: Web Applications That Reach Everyone](http://www.amazon.com/Universal-Design-Web-Applications-Everyone/dp/0596518730/ref=sr_1_1) [read][$]
24 | * [Web Accessibility: Getting Started](http://www.pluralsight.com/courses/web-accessibility-getting-started) [watch][$]
25 | * [A Web for Everyone](http://rosenfeldmedia.com/books/a-web-for-everyone/) [read][$]
26 |
27 | ##### Standards/Specifications:
28 |
29 | * [Accessible Rich Internet Applications (WAI-ARIA) Current Status](http://www.w3.org/standards/techs/aria#w3c_all)
30 | * [Web Accessibility Initiative (WAI)](http://www.w3.org/WAI/)
31 | * [Web Content Accessibility Guidelines (WCAG) Current Status](http://www.w3.org/standards/techs/wcag#w3c_all)
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
--------------------------------------------------------------------------------
/learning/animation.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Web Animation
6 |
7 | ##### General Learning:
8 |
9 | * [Advanced SVG Animation](https://frontendmasters.com/courses/svg-animation/) [$][watch]
10 | * [Adventures in Web Animations](https://www.codeschool.com/courses/adventures-in-web-animations) [$][watch]
11 | * [Animating With Snap.svg](https://webdesign.tutsplus.com/courses/animating-with-snapsvg) [$][watch]
12 | * [Animation in CSS3 and HTML5](https://frontendmasters.com/courses/animation-storytelling-html5-css3/) [$][watch]
13 | * [Create Animations in CSS](http://www.kirupa.com/css_animations/index.htm) [read & watch]
14 | * [CSS Animation in the Real World](https://webdesign.tutsplus.com/courses/css-animation-in-the-real-world) [$][watch]
15 | * [Foundation HTML5 Animation with JavaScript](http://www.amazon.com/Foundation-HTML5-Animation-JavaScript-Lamberta/dp/1430236655/ref=sr_1_3) [$][read]
16 | * [Learn to Create Animations in JavaScript](http://www.kirupa.com/javascript_animations/index.htm) [read & watch]
17 | * [State of the Animation 2015](https://air.mozilla.org/rachel-nabors-state-of-the-animation-2015/) [watch]
18 | * [Web Animation using JavaScript: Develop & Design (Develop and Design)](http://www.amazon.com/Web-Animation-using-JavaScript-Develop-ebook/dp/B00UNKXVDU/ref=sr_1_1) [$][read]
19 |
20 | ##### Standards/Specifications:
21 |
22 | * [Web Animations](https://w3c.github.io/web-animations/)
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/learning/api.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Interface/API Design
6 |
7 | ##### Data (Most Likely JSON) APIs
8 |
9 | * [Build APIs You Won't Hate](http://apisyouwonthate.com/) [$][read]
10 | * [JSON API ](http://jsonapi.org/) [read]
11 |
12 | ##### JavaScript APIs
13 |
14 | * [Designing Better JavaScript APIs](http://www.smashingmagazine.com/2012/10/designing-javascript-apis-usability/) [read]
15 | * [Writing JavaScript APIs](http://blog.wolksoftware.com/writing-javascript-apis) [read]
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/learning/browser-dev-tools.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Web Developer Tools
6 |
7 | > Web development tools allow web developers to test and debug their code. They are different from website builders and IDEs in that they do not assist in the direct creation of a webpage, rather they are tools used for testing the user facing interface of a website or web application.
8 | >
9 | > Web development tools come as browser add-ons or built in features in web browsers. The most popular web browsers today like, Google Chrome, Firefox, Opera, Internet Explorer, and Safari have built in tools to help web developers, and many additional add-ons can be found in their respective plugin download centers.
10 | >
11 | > Web development tools allow developers to work with a variety of web technologies, including HTML, CSS, the DOM, JavaScript, and other components that are handled by the web browser. Due to the increasing demand from web browsers to do more popular web browsers have included more features geared for developers.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/Web_development_tools)
14 |
15 | While most browsers come equipped with web developer tools, the [Chrome developer tools](https://developers.google.com/web/tools/chrome-devtools/) are currently the most talked about and widely used tools available.
16 |
17 | I'd suggest learning and using the [Chrome web developer tools](https://developers.google.com/web/tools/chrome-devtools/), simply because the best resources for learning web developer tools revolves around Chrome DevTools.
18 |
19 | ##### Learn Chrome Web Developer Tools
20 |
21 | * [Chrome Developer Tools](https://code.tutsplus.com/courses/chrome-developer-tools) [watch][$]
22 | * [Explore and Master Chrome DevTools](http://discover-devtools.codeschool.com/)
23 | * [Using The Chrome Developer Tools](http://www.pluralsight.com/courses/chrome-developer-tools) [watch][$]
24 |
25 | ##### Chrome Web Developer Tools Docs:
26 |
27 | * [Command Line API Reference](https://developers.google.com/web/tools/javascript/command-line/command-line-reference?hl=en)
28 | * [Keyboard & UI Shortcuts Reference](https://developers.google.com/web/tools/iterate/inspect-styles/shortcuts)
29 | * [Per-Panel Documentation](https://developers.google.com/web/tools/chrome-devtools/#docs)
30 | * [Settings](https://developer.chrome.com/devtools/docs/settings)
31 |
32 | ##### News/Newsletters/Podcasts/Tips:
33 |
34 | * [Dev Tips](https://umaar.com/dev-tips/)
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/learning/browsers.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Web Browsers
6 |
7 | > A web browser (commonly referred to as a browser) is a software application for retrieving, presenting, and traversing information resources on the World Wide Web. An information resource is identified by a Uniform Resource Identifier (URI/URL) and may be a web page, image, video or other piece of content. Hyperlinks present in resources enable users easily to navigate their browsers to related resources. Although browsers are primarily intended to use the World Wide Web, they can also be used to access information provided by web servers in private networks or files in file systems.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Web_browser)
10 |
11 |
12 | ##### The [most commonly used browsers](http://www.sitepoint.com/browser-trends-april-2015-statcounter-vs-netmarketshare/) (on any device) are:
13 |
14 | 1. [Chrome](http://www.google.com/chrome/) (engine: [Blink](https://en.wikipedia.org/wiki/Blink_%28layout_engine%29) + [V8](https://en.wikipedia.org/wiki/V8_%28JavaScript_engine%29))
15 | 2. [Firefox](https://www.mozilla.org/en-US/firefox/new/) (engine: [Gecko](https://en.wikipedia.org/wiki/Gecko_%28software%29) + [SpiderMonkey](https://en.wikipedia.org/wiki/SpiderMonkey_%28software%29))
16 | 3. [Internet Explorer](http://windows.microsoft.com/en-us/internet-explorer/download-ie) (engine: [Trident](https://en.wikipedia.org/wiki/Trident_%28layout_engine%29) + [Chakra](https://en.wikipedia.org/wiki/Chakra_%28JScript_engine%29))
17 | 4. [Safari](https://www.apple.com/safari/) (engine: [Webkit](https://en.wikipedia.org/wiki/WebKit) + [SquirrelFish](https://trac.webkit.org/wiki/SquirrelFish))
18 |
19 | 
20 |
21 | Image source: http://gs.statcounter.com/#all-browser_version_partially_combined-ww-monthly-201501-201601-bar
22 |
23 | ##### Evolution of Browsers & Web Technologies (i.e., APIs)
24 |
25 | * [evolutionoftheweb.com](http://www.evolutionoftheweb.com/) [read]
26 | * [Timeline of web browsers](https://en.wikipedia.org/wiki/Timeline_of_web_browsers) [read]
27 |
28 | ##### The Most Commonly Used Headless Browser Are:
29 |
30 | * [PhantomJS](http://phantomjs.org/) (engine: [Webkit](https://en.wikipedia.org/wiki/WebKit) + SquirrelFish)
31 | * [SlimerJS](http://slimerjs.org/) (engine: [Gecko](https://en.wikipedia.org/wiki/Gecko_%28software%29) + [SpiderMonkey](https://en.wikipedia.org/wiki/SpiderMonkey_%28software%29))
32 | * [TrifleJS](http://triflejs.org/) (engine: [Trident](https://en.wikipedia.org/wiki/Trident_%28layout_engine%29) + [Chakra](https://en.wikipedia.org/wiki/Chakra_%28JScript_engine%29))
33 |
34 | ##### How Browsers Work
35 |
36 | * [20 Things I Learned About Browsers and the Web](http://www.20thingsilearned.com/en-US/foreword/1) [read]
37 | * [Fast CSS: How Browsers Lay Out Web Pages](http://dbaron.org/talks/2012-03-11-sxsw/master.xhtml) [read]
38 | * [How Browsers Work: Behind the scenes of modern web browsers](http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/) [read]
39 | * [So How Does the Browser Actually Render a Website](https://www.youtube.com/watch?v=SmE4OwHztCc) [watch]
40 | * [What Every Frontend Developer Should Know About Webpage Rendering](http://frontendbabel.info/articles/webpage-rendering-101/) [read]
41 |
42 | 
43 |
44 | Image source: http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/
45 |
46 | ##### Optimizing for Browsers:
47 |
48 | * [Browser Rendering Optimization](https://www.udacity.com/course/browser-rendering-optimization--ud860) [watch]
49 | * [Website Performance Optimization](https://www.udacity.com/course/website-performance-optimization--ud884) [watch]
50 |
51 | ##### Browser Security
52 |
53 | * [Browser Security Handbook](https://code.google.com/p/browsersec/wiki/Main) [read]
54 | * [Frontend Security](https://mikewest.org/2013/09/frontend-security-frontendconf-2013) [watch]
55 | * [HTML5 Security Cheatsheet](https://html5sec.org/#javascript) [read]
56 | * [Security for Web Developers: Using JavaScript, HTML, and CSS](http://www.amazon.com/Security-Web-Developers-Using-JavaScript/dp/1491928646/) [read][$]
57 | * [The Tangled Web: A Guide to Securing Modern Web Applications](http://lcamtuf.coredump.cx/tangled/) [read]($)
58 |
59 | ##### Comparing Browsers
60 |
61 | * [Comparison of Web Browsers](https://en.wikipedia.org/wiki/Comparison_of_web_browsers) [read]
62 |
63 | ##### Developing for Browsers
64 |
65 | In the past, a front-end developer spent a lot of time making code work in several different browsers. This was once a bigger issue than it is today, unless you have to write code for older browsers (i.e., Build automation is the process of automating the creation of a software build and the associated processes including: compiling computer source code into binary code, packaging binary code, and running automated tests.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Build_automation)
10 |
11 | ##### General Learning:
12 |
13 | * [Getting Started with Gulp](https://www.packtpub.com/web-development/getting-started-gulp) [read][$]
14 | * [Gulp Basics](http://teamtreehouse.com/library/gulp-basics) [watch][$]
15 | * [JavaScript Build Automation With Gulp.js](http://www.pluralsight.com/courses/javascript-build-automation-gulpjs) [watch][$]
16 | * [Learning Gulp - Getting Started with the Front End Factory](http://hmphry.com/gulp) [read]
17 | * [Rapid Gulp](https://www.packtpub.com/web-development/rapid-gulp-video) [watch][$]
18 | * [Using npm as a Task Runner](http://teamtreehouse.com/library/using-npm-as-a-task-runner) [watch][$]
19 |
20 | ##### References/Docs:
21 |
22 | * [Gulp](https://github.com/gulpjs/gulp/blob/master/docs/getting-started.md)
23 |
24 | Gulp is great. However, you might only need `npm run`. Before turning to additional complexity in your application stack ask yourself if `npm run` can do the job. If you need more, use both.
25 |
26 | Read:
27 |
28 | * [Build Tools vs npm Scripts: Why Not Both?](http://engineering.hobsons.com/2015/06/26/build-tools-vs-npm-scripts-why-not-both/)
29 | * [Give Grunt the Boot! A Guide to Using npm as a Build Tool](http://www.sitepoint.com/guide-to-npm-as-a-build-tool/)
30 | * [How to Use npm as a Build Tool](http://blog.keithcirkel.co.uk/how-to-use-npm-as-a-build-tool/)
31 | * [Task Automation with npm Run](http://substack.net/task_automation_with_npm_run)
32 | * [Using npm as a Build System for Your next Project](https://drublic.de/blog/npm-builds)
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/learning/cli.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Command Line
6 |
7 | > A command-line interface or command language interpreter (CLI), also known as command-line user interface, console user interface, and character user interface (CUI), is a means of interacting with a computer program where the user (or client) issues commands to the program in the form of successive lines of text (command lines).
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Command-line_interface)
10 |
11 | ##### General Learning:
12 |
13 | * [The Bash Guide](http://guide.bash.academy/) [read]
14 | * [Codecademy: Learn the Command Line](https://www.codecademy.com/courses/learn-the-command-line) [watch]
15 | * [The Command Line Crash Course](http://cli.learncodethehardway.org/book/) [read]
16 | * [Command Line Power User](http://commandlinepoweruser.com/) [watch]
17 | * [Learn Enough Command Line to Be Dangerous](http://www.learnenough.com/command-line-tutorial) [read] [free to $]
18 | * [Meet the Command Line](http://www.pluralsight.com/courses/meet-command-line) [watch][$]
19 |
20 | ##### Mastering:
21 |
22 | * [Advanced Command Line Techniques](https://code.tutsplus.com/courses/advanced-command-line-techniques) [watch][$]
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/learning/courses.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Directed Learning
6 |
7 | The table below contains instructor led, paid, front-end courses, programs, schools, and bootcamps.
8 |
9 | If you can't afford a directed education, a self directed education using screencasts, books, and articles is a viable alternative to learn front-end development for the self-driven individual.
10 |
11 |
12 |
13 |
14 | company |
15 | course |
16 | price |
17 | on site |
18 | remote |
19 |
20 |
21 |
22 |
23 | Austin Coding Academy |
24 | The Front End Track |
25 | 2,490 per session |
26 | Austin, TX |
27 | |
28 |
29 |
30 | Betamore |
31 | Front-end Web Development |
32 | 8,500 |
33 | Baltimore, MD |
34 | |
35 |
36 |
37 | BLOC |
38 | Become a Frontend Developer |
39 | 4,999 |
40 | |
41 | yes |
42 |
43 |
44 | Codeup |
45 | Night Front-End Bootcamp |
46 | 8,500 |
47 | San Antonio, Texas |
48 | |
49 |
50 |
51 | Codify Academy |
52 | Front-end Web Development |
53 | 4,000 |
54 | multiple locations |
55 | |
56 |
57 |
58 | DecodeMTL |
59 | Learn Front-end Web Development |
60 | 2,500 |
61 | Montreal, QC |
62 | |
63 |
64 |
65 | The Flatiron School |
66 | Introduction to Front-End Web Development |
67 | 3,500 |
68 | New York, NY |
69 | |
70 |
71 |
72 | General Assembly |
73 | Frontend Web Development |
74 | 3,500 |
75 | multiple locations |
76 | |
77 |
78 |
79 | HackerYou |
80 | Front-end Web Development Immersive |
81 | 7,000 - 7,910 |
82 | Toronto, Canada |
83 | |
84 |
85 |
86 | Iron Yard |
87 | Front End Engineering |
88 | 12,000 |
89 | multiple locations |
90 | |
91 |
92 |
93 | LearningFuze |
94 | Part-Time Front-End Development Course |
95 | 2,500 |
96 | Irvine, CA |
97 | |
98 |
99 |
100 | The New York Code + Design Academy |
101 | Front End 101 |
102 | 2,000 |
103 | New York, NY |
104 | |
105 |
106 |
107 | Portland Code School |
108 | Advanced Front-end Developer Tools |
109 | 2,000 |
110 | Portland, OR |
111 | |
112 |
113 |
114 | Thinkful |
115 | Frontend Web Development |
116 | 300 per month |
117 | |
118 | yes |
119 |
120 |
121 | Udacity |
122 | Front-End Web Developer Nanodegree |
123 | 200 monthly |
124 | multiple locations |
125 | yes |
126 |
127 |
128 |
129 |
--------------------------------------------------------------------------------
/learning/direct-learning.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Directed Learning
6 |
7 | This section focuses on directed learning via schools, courses, programs and bootcamps.
--------------------------------------------------------------------------------
/learning/dns.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Domain Name System (aka DNS)
6 |
7 | > The Domain Name System (DNS) is a hierarchical distributed naming system for computers, services, or any resource connected to the Internet or a private network. It associates various information with domain names assigned to each of the participating entities. Most prominently, it translates domain names, which can be easily memorized by humans, to the numerical IP addresses needed for the purpose of computer services and devices worldwide. The Domain Name System is an essential component of the functionality of most Internet services because it is the Internet's primary directory service.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Domain_Name_System)
10 |
11 | 
12 |
13 | Image source: http://www.digital-digest.com/blog/DVDGuy/wp-content/uploads/2011/11/how_dns_works.jpg
14 |
15 |
16 | * [DNS Explained](https://www.youtube.com/watch?v=72snZctFFtA) [watch]
17 | * [How DNS Works](https://howdns.works/ep1/) [read]
18 |
--------------------------------------------------------------------------------
/learning/dom.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn DOM, BOM, & jQuery
6 |
7 | > **DOM** - The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML, and XML documents. The nodes of every document are organized in a tree structure, called the DOM tree. Objects in the DOM tree may be addressed and manipulated by using methods on the objects. The public interface of a DOM is specified in its application programming interface (API).
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Document_Object_Model)
10 |
11 | > **BOM** - The Browser Object Model (BOM) is a browser-specific convention referring to all the objects exposed by the web browser. Unlike the Document Object Model, there is no standard for implementation and no strict definition, so browser vendors are free to implement the BOM in any way they wish.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/Browser_Object_Model)
14 |
15 | > **jQuery** - jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML. jQuery is the most popular JavaScript library in use today, with installation on 65% of the top 10 million highest-trafficked sites on the Web. jQuery is free, open-source software licensed under the MIT License.
16 |
17 | >— [Wikipedia](https://en.wikipedia.org/wiki/JQuery)
18 |
19 | The ideal path, but certainly the most difficult, would be to first learn JavaScript, then the DOM, then jQuery. However, do what makes sense to your brain. Most front-end developers learn about JavaScript and then DOM by way of first learning jQuery. Whatever path you take, just make sure JavaScript, then DOM, or jQuery don't become a black box.
20 |
21 | ##### General Learning:
22 |
23 | * [Codecademy.com jQuery](https://www.codecademy.com/tracks/jquery) [watch]
24 | * [The Document Object Model](http://eloquentjavascript.net/13_dom.html) [read]
25 | * [HTML/JS: Making Webpages Interactive](https://www.khanacademy.org/computing/computer-programming/html-css-js) [watch]
26 | * [HTML/JS: Making Webpages Interactive with jQuery](https://www.khanacademy.org/computing/computer-programming/html-js-jquery) [watch]
27 | * [jQuery Enlightenment](http://jqueryenlightenment.com/) [read]
28 |
29 | ##### Mastering:
30 |
31 | * [AdvancED DOM Scripting: Dynamic Web Design Techniques](http://www.amazon.com/gp/product/1590598563/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1590598563&linkCode=as2&tag=fronenddevejo-20&linkId=VQZU5EQIQQXCF56Y) [read][$]
32 | * [Advanced JS Fundamentals to jQuery & Pure DOM Scripting](https://frontendmasters.com/courses/javascript-jquery-dom/) [watch][$]
33 | * [Douglas Crockford: An Inconvenient API - The Theory of the DOM](https://www.youtube.com/watch?v=Y2Y0U-2qJMs&list=PL5586336C26BDB324&index=2) [watch]
34 | * [DOM Enlightenment](http://www.amazon.com/DOM-Enlightenment-Cody-Lindley/dp/1449342841/) [read][$] or [read online for free](http://domenlightenment.com/)
35 | * [Fixing Common jQuery Bugs](http://www.pluralsight.com/courses/fixing-common-jquery-bugs) [watch][$]
36 | * [jQuery-Free JavaScript](http://www.pluralsight.com/courses/jquery-free-javascript) [watch][$]
37 | * [jQuery Tips and Tricks](http://www.pluralsight.com/courses/jquery-tips-and-tricks) [watch][$]
38 |
39 | ##### References/Docs:
40 |
41 | * [jQuery Docs](http://api.jquery.com/)
42 | * [MDN Browser Object Model](https://developer.mozilla.org/en-US/docs/Web/API/Window)
43 | * [MDN Document Object Model](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model)
44 | * [MDN Event reference](https://developer.mozilla.org/en-US/docs/Web/Events)
45 | * [MSDN Document Object Model (DOM)](https://msdn.microsoft.com/en-us/library/hh772384%28v=vs.85%29.aspx)
46 |
47 | ##### Standards/Specifications:
48 |
49 | * [Document Object Model (DOM) Level 3 Events Specification](http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/)
50 | * [Document Object Model (DOM) Technical Reports](http://www.w3.org/DOM/DOMTR)
51 | * [DOM Living Standard](https://dom.spec.whatwg.org/)
52 | * [W3C DOM4](http://www.w3.org/TR/2014/WD-dom-20140204/)
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
--------------------------------------------------------------------------------
/learning/fonts.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Web Fonts & Icons
6 |
7 | > Web typography refers to the use of fonts on the World Wide Web. When HTML was first created, font faces and styles were controlled exclusively by the settings of each Web browser. There was no mechanism for individual Web pages to control font display until Netscape introduced the `` tag in 1995, which was then standardized in the HTML 3.2 specification. However, the font specified by the tag had to be installed on the user's computer or a fallback font, such as a browser's default sans-serif or monospace font, would be used. The first Cascading Style Sheets specification was published in 1996 and provided the same capabilities.
8 | >
9 | > The CSS2 specification was released in 1998 and attempted to improve the font selection process by adding font matching, synthesis and download. These techniques did not gain much use, and were removed in the CSS2.1 specification. However, Internet Explorer added support for the font downloading feature in version 4.0, released in 1997. Font downloading was later included in the CSS3 fonts module, and has since been implemented in Safari 3.1, Opera 10 and Mozilla Firefox 3.5. This has subsequently increased interest in Web typography, as well as the usage of font downloading.
10 |
11 | >— [Wikipedia](https://en.wikipedia.org/wiki/Web_typography)
12 |
13 | ##### General Learning:
14 |
15 | * [A Comprehensive Guide to Font Loading Strategies](https://www.zachleat.com/web/comprehensive-webfonts/) [read]
16 | * [Beautiful Web Type a Showcase of the Best Typefaces from the Google Web Fonts Directory](https://beautifulwebtype.com) [read]
17 | * [Quick Guide to Webfonts via @font-face](http://www.html5rocks.com/en/tutorials/webfonts/quick/) [read]
18 | * [Responsive Typography](https://frontendmasters.com/courses/responsive-typography/) [watch][$]
19 | * [Typography for the Web](http://www.pluralsight.com/courses/typography-for-web-1790) [watch][$]
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/learning/front-end-apps.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Front-End Application Architecture
6 |
7 | * [Build an App with React and Ampersand](http://learn.humanjavascript.com/react-ampersand) [watch][$]
8 | * [Building Modern Single-Page Web Applications](https://frontendmasters.com/workshops/web-apps/) [watch][$]
9 | * [Eloquent JavaScript: Modules](http://eloquentjavascript.net/10_modules.html) [read]
10 | * [A Field Guide to Static Apps](http://www.staticapps.org/) [read]
11 | * [Field Guide to Web Applications](http://www.html5rocks.com/webappfieldguide/toc/index/) [read]
12 | * [Frontend Guidelines Questionnaire](https://github.com/bradfrost/frontend-guidelines-questionnaire) [read]
13 | * [Human JavaScript](http://read.humanjavascript.com/) [read]
14 | * [JavaScript Application Design](https://www.manning.com/books/javascript-application-design?a_aid=go&a_bid=e6de0d9d) [read][$]
15 | * [Nicholas Zakas: Scalable JavaScript Application Architecture](https://www.youtube.com/watch?v=vXjVFPosQHw) [watch]
16 | * [Organizing JavaScript Functionality](https://frontendmasters.com/courses/organizing-javascript/) [watch][$]
17 | * [Patterns for Large-Scale JavaScript Application Architecture](http://addyosmani.com/largescalejavascript/) [read]
18 | * [Programming JavaScript Applications](http://chimera.labs.oreilly.com/books/1234000000262/index.html) [read]
19 | * [Terrific](http://terrifically.org/) [read]
20 | * [UI Architecture](http://www.pluralsight.com/courses/web-ui-architecture) [watch][$]
21 | * [Web UI Architecture](https://frontendmasters.com/courses/web-ui-architecture/) [watch][$]
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/learning/front-end.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn General Front-End Development
6 |
7 | ##### General Learning:
8 |
9 | * [A Baseline for Front-End [JS] Developers: 2015](http://rmurphey.com/blog/2015/03/23/a-baseline-for-front-end-developers-2015/) [read]
10 | * [Being a web developer](http://www.yellowshoe.com.au/standards) [read]
11 | * [Foundations of Front-End Web Development](https://www.udemy.com/foundations-of-front-end-development/) [watch][$]
12 | * [freeCodeCamp](http://freecodecamp.com/) [interact]
13 | * [Front-End Curriculum](https://gist.github.com/stevekinney/03027e71aac341af14a2) [read]
14 | * [Front-End Dev Mastery](https://mijingo.com/products/bundles/front-end-dev-mastery/) [watch][$]
15 | * [Front-End Web Developer Nanodegree](https://www.udacity.com/course/front-end-web-developer-nanodegree--nd001) [watch][$]
16 | * [Front End Web Development Career Kickstart](http://www.pluralsight.com/courses/front-end-web-development-career-kickstart) [watch][$]
17 | * [Front End Web Development: Get Started](http://www.pluralsight.com/courses/front-end-web-development-get-started) [watch][$]
18 | * [Front-End Web Development Quick Start With HTML5, CSS, and JavaScript](http://www.pluralsight.com/courses/front-end-web-app-html5-javascript-css) [watch][$]
19 | * [Frontend Guidelines](https://github.com/bendc/frontend-guidelines) [read]
20 | * [Introduction to Web Development](https://frontendmasters.com/courses/web-development/) [watch][$]
21 | * [Isobar Front-End Code Standards](http://isobar-idev.github.io/code-standards/) [read]
22 | * [Lean Front-End Engineering](https://frontendmasters.com/courses/lean-front-end-engineering/) [watch][$]
23 | * [Learn Front End Web Development](https://teamtreehouse.com/tracks/front-end-web-development) [watch][$]
24 | * [Planning a Front-End JS Application](https://www.youtube.com/watch?v=q4zEGkjTBFA) [watch]
25 | * [So, You Want to Be a Front-End Engineer](https://www.youtube.com/watch?v=Lsg84NtJbmI) [watch]
26 | * [Web Fundamentals](https://developers.google.com/web/fundamentals) [read]
27 |
28 | ##### General Front-End Newsletters, News Outlets, & Podcasts:
29 |
30 | * [The Big Web Show](http://5by5.tv/bigwebshow)
31 | * [Fresh Brewed Frontend](https://freshbrewed.co/frontend/)
32 | * [Front-End Dev Weekly](http://frontenddevweekly.com/)
33 | * [frontendfront.com](http://frontendfront.com/)
34 | * [Mobile Web Weekly](http://mobilewebweekly.co/)
35 | * [Open Web Platform Daily Digest](http://webplatformdaily.org/)
36 | * [O'Reilly Web Platform Radar](http://radar.oreilly.com/web-platform)
37 | * [shoptalkshow.com](http://shoptalkshow.com/)
38 | * [The Web Ahead](http://thewebahead.net/)
39 | * [The Web Platform Podcast](http://thewebplatform.libsyn.com/)
40 | * [webtoolsweekly.com](http://webtoolsweekly.com/)
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/learning/headless-browsers.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Headless Browsers
6 |
7 | > A headless browser is a web browser without a graphical user interface.
8 | >
9 | >Headless browsers provide automated control of a web page in an environment similar to popular web browsers, but are executed via a command line interface or using network communication. They are particularly useful for testing web pages as they are able to render and understand HTML the same way a browser would, including styling elements such as page layout, color, font selection and execution of JavaScript and AJAX which are usually not available when using other testing methods. Google stated in 2009 that using a headless browser could help their search engine index content from websites that use AJAX.
10 |
11 | >— [Wikipedia](https://en.wikipedia.org/wiki/Headless_browser)
12 |
13 | * [Getting Started with PhantomJS](http://www.amazon.com/Getting-Started-PhantomJS-Aries-Beltran/dp/1782164227) [read][$]
14 | * [PhantomJS Cookbook](http://www.amazon.com/PhantomJS-Cookbook-Rob-Friesel/dp/178398192X) [read][$]
15 | * [PhantomJS for Web Automation](https://www.youtube.com/watch?v=OqEcn_6GBDI) [watch]
16 | * [Rapid PhantomJS](https://www.packtpub.com/web-development/rapid-phantomjs-video) [watch][$]
17 |
--------------------------------------------------------------------------------
/learning/hosting.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Web Hosting
6 |
7 | > A web hosting service is a type of Internet hosting service that allows individuals and organizations to make their website accessible via the World Wide Web. Web hosts are companies that provide space on a server owned or leased for use by clients, as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for other servers located in their data center, called colocation, also known as Housing in Latin America or France.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Web_hosting_service)
10 |
11 | 
12 |
13 | Image source: http://www.alphaelite.com.sg/sitev2/images/stories/webhostdemo.jpg
14 |
15 |
16 | ##### General Learning:
17 |
18 | * [Ultimate Guide to Web Hosting](http://www.whoishostingthis.com/resources/web-hosting/) [read]
19 | * [Web Hosting Beginner Guide](http://www.webhostingsecretrevealed.net/web-hosting-beginner-guide/) [read]
20 | * [Web Hosting for Dummies](http://www.dummies.com/store/product/Web-Hosting-For-Dummies.productCd-1118540573.html) [read][$]
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/learning/html-css.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn HTML & CSS
6 |
7 | > **HTML** - HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. Web browsers can read HTML files and render them into visible or audible web pages. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming language.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/HTML)
10 |
11 | > **CSS** - Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language. Although most often used to change the style of web pages and user interfaces written in HTML and XHTML, the language can be applied to any kind of XML document, including plain XML, SVG and XUL. Along with HTML and JavaScript, CSS is a cornerstone technology used by most websites to create visually engaging webpages, user interfaces for web applications, and user interfaces for many mobile applications.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/Cascading_Style_Sheets)
14 |
15 | Liken to constructing a house, one might consider HTML the framing and CSS to be the painting & decorating.
16 |
17 | ##### General Learning:
18 |
19 | * [Absolute Centering in CSS](http://codepen.io/shshaw/full/gEiDt) [read]
20 | * [codecademy.com HTML & CSS](https://www.codecademy.com/tracks/web) [interact]
21 | * [CSS Positioning](http://www.pluralsight.com/courses/css-positioning-1834) [watch][$]
22 | * [Front End Web Development: Get Started](http://www.pluralsight.com/courses/front-end-web-development-get-started) [watch][$]
23 | * [Front-End Web Development Quick Start With HTML5, CSS, and JavaScript](http://www.pluralsight.com/courses/front-end-web-app-html5-javascript-css) [watch][$]
24 | * [HTML and CSS: Design and Build Websites](http://www.amazon.com/gp/product/1118008189/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1118008189&linkCode=as2&tag=fronenddevejo-20&linkId=V4CUOSZZARJURWZD) [read][$]
25 | * [HTML Document Flow](http://www.pluralsight.com/courses/html-document-flow-1837) [watch][$]
26 | * [HTML Mastery: Semantics, Standards, and Styling](http://www.amazon.com/gp/product/1590597656/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1590597656&linkCode=as2&tag=fronenddevejo-20&linkId=VFZVICLZO6GUZQI2) [read][$]
27 | * [Intro to HTML/CSS: Making webpages](https://www.khanacademy.org/computing/computer-programming/html-css) [watch]
28 | * [Learn to Code HTML & CSS](http://learn.shayhowe.com/html-css/) [read]
29 | * [Learn CSS Layout](http://learnlayout.com/) [read]
30 | * [Semantic HTML: How to Structure Web Pages](https://webdesign.tutsplus.com/courses/semantic-html-how-to-structure-web-pages) [watch]
31 | * [Solid HTML Form Structure](https://webdesign.tutsplus.com/courses/solid-html-form-structure) [watch]
32 | * [Understanding the CSS Box Model](https://webdesign.tutsplus.com/courses/understanding-the-css-box-model) [watch]
33 |
34 | ##### Mastering:
35 |
36 | * [A Complete Guide to Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) [read]
37 | * [atozcss.com](http://www.atozcss.com/) [watch]
38 | * [CSS Diner](http://flukeout.github.io/) [interact]
39 | * [CSS Selectors from CSS4 till CSS1](http://css4-selectors.com/selectors/) [read]
40 | * [CSS3 In-Depth](https://frontendmasters.com/courses/css3-in-depth/) [watch][$]
41 | * [What the Flexbox?! A Simple, Free 20 Video Course That Will Help You Master CSS Flexbox](http://flexbox.io/) [watch]
42 |
43 | ##### References/Docs:
44 |
45 | * [CSS Triggers...a Game of Layout, Paint, and Composite](http://csstriggers.com/)
46 | * [cssvalues.com](http://cssvalues.com/)
47 | * [HTML Attribute Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)
48 | * [htmlelement.info](http://htmlelement.info/)
49 | * [MDN CSS Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference)
50 | * [MDN HTML Element Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Element)
51 |
52 | ##### Glossary:
53 |
54 | * [CSS Glossary - Programming Reference for CSS Covering Comments, Properties, and Selectors](https://www.codecademy.com/articles/glossary-css)
55 | * [HTML Glossary Programming Reference for HTML elements](https://www.codecademy.com/articles/glossary-html)
56 |
57 | ##### Standards/Specifications:
58 |
59 | * [All W3C CSS Specifications](http://www.w3.org/Style/CSS/current-work#roadmap)
60 | * [All W3C HTML Spec](http://www.w3.org/standards/techs/html#w3c_all)
61 | * [Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification](https://drafts.csswg.org/css2/)
62 | * [The Elements of HTML from the Living Standard](https://html.spec.whatwg.org/multipage/semantics.html#semantics)
63 | * [Global Attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes)
64 | * [The HTML Syntax](https://html.spec.whatwg.org/multipage/syntax.html#syntax) from the Living Standard
65 | * [HTML5 from W3C](http://www.w3.org/TR/html5/) : 5th major revision of the core language of the World Wide Web
66 | * [Selectors Level 3](http://www.w3.org/TR/css3-selectors/)
67 |
68 | ##### Architecting CSS:
69 |
70 | * [Atomic Design](http://atomicdesign.bradfrost.com/) [read]
71 | * [OOCSS](http://oocss.org/) [read]
72 | * [SMACSS](https://smacss.com/) [read][$]
73 | * [SMACSS](https://frontendmasters.com/courses/smacss/) [watch][$]
74 |
75 | ##### Authoring Conventions:
76 |
77 | * [cssguidelin.es](http://cssguidelin.es/) [read]
78 | * [Frontend Guidelines Questionnaire](https://github.com/bradfrost/frontend-guidelines-questionnaire) [read]
79 | * [Google HTML/CSS Style Guide](http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml#General_Formatting)
80 | * [Idiomatic CSS](https://github.com/necolas/idiomatic-css) [read]
81 | * [Standards for Developing Flexible, Durable, and Sustainable HTML and CSS](http://mdo.github.io/code-guide/) [read]
82 |
83 | ##### HTML/CSS Newsletters:
84 |
85 | * [CSS Weekly](http://css-weekly.com/archives/)
86 | * [HTML 5 Weekly](http://html5weekly.com/)
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
--------------------------------------------------------------------------------
/learning/http-networks.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn HTTP/Networks (Including CORS & WebSockets)
6 |
7 | > **HTTP** - The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol)
10 |
11 | > **CORS** - Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources (e.g., fonts) on a web page to be requested from another domain outside the domain from which the resource originated.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing)
14 |
15 | >**WebSockets** - WebSocket is a protocol providing full-duplex communication channels over a single TCP connection. The WebSocket protocol was standardized by the IETF as RFC 6455 in 2011, and the WebSocket API in Web IDL is being standardized by the W3C.
16 |
17 | >— [Wikipedia](https://en.wikipedia.org/wiki/WebSocket)
18 |
19 | ##### HTTP
20 |
21 | * [High Performance Browser Networking: What Every Web Developer Should Know About Networking and Web Performance](http://chimera.labs.oreilly.com/books/1230000000545/index.html) [read]
22 | * [HTTP/2 Frequently Asked Questions](https://http2.github.io/faq/#what-are-the-key-differences-to-http1x) [read]
23 | * [HTTP Fundamentals](http://www.pluralsight.com/courses/xhttp-fund) [watch][$]
24 | * [HTTP: The Protocol Every Web Developer Must Know - Part 1](http://code.tutsplus.com/tutorials/http-the-protocol-every-web-developer-must-know-part-1--net-31177) [read]
25 | * [HTTP: The Protocol Every Web Developer Must Know - Part 2](http://code.tutsplus.com/tutorials/http-the-protocol-every-web-developer-must-know-part-2--net-31155) [read]
26 | * [HTTP Succinctly](http://code.tutsplus.com/series/http-succinctly--net-33683) [read]
27 |
28 | ##### CORS
29 |
30 | * [CORS in Action](https://www.manning.com/books/cors-in-action) [read][$]
31 | * [HTTP Access Control (CORS)](https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS) [read]
32 | * [HTTP Status Codes in 60 Seconds](http://webdesign.tutsplus.com/tutorials/http-status-codes-in-60-seconds--cms-24317) [watch]
33 |
34 | ##### WebSockets
35 |
36 | * [Connect the Web With WebSockets](https://code.tutsplus.com/courses/connect-the-web-with-websockets) [watch]
37 | * [WebSocket: Lightweight Client-Server Communications](http://www.amazon.com/WebSocket-Client-Server-Communications-Andrew-Lombardi/dp/1449369278/ref=sr_1_1) [read][$]
38 | * [The WebSocket Protocol](https://tools.ietf.org/html/rfc6455) [read]
39 |
--------------------------------------------------------------------------------
/learning/internet.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Internet/Web
6 |
7 | > The Internet is a global system of interconnected computer networks that use the Internet protocol suite (TCP/IP) to link several billion devices worldwide. It is a network of networks that consists of millions of private, public, academic, business, and government networks of local to global scope, linked by a broad array of electronic, wireless, and optical networking technologies. The Internet carries an extensive range of information resources and services, such as the inter-linked hypertext documents and applications of the World Wide Web (WWW), electronic mail, telephony, and peer-to-peer networks for file sharing.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Internet)
10 |
11 | * [How Does the Internet work](http://www.w3.org/wiki/How_does_the_Internet_work) - W3C [read]
12 | * [How Does the Internet Work?](http://web.stanford.edu/class/msande91si/www-spr04/readings/week1/InternetWhitepaper.htm) - Stanford Paper [read]
13 | * [How the Internet Works](https://www.khanacademy.org/partner-content/code-org/internet-works) [watch]
14 | * [How the Internet Works in 5 Minutes](https://www.youtube.com/watch?v=7_LPdttKXPc) [watch]
15 | * [How the Web Works](https://www.eventedmind.com/classes/how-the-web-works-7f40254c) [watch][$]
16 | * [What Is the Internet? Or, "You Say Tomato, I Say TCP/IP"](http://www.20thingsilearned.com/en-US/what-is-the-internet/1) [read]
17 |
--------------------------------------------------------------------------------
/learning/javascript.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn JavaScript
6 |
7 | > JavaScript is a high level, dynamic, untyped, and interpreted programming language. It has been standardized in the ECMAScript language specification. Alongside HTML and CSS, it is one of the three essential technologies of World Wide Web content production; the majority of websites employ it and it is supported by all modern web browsers without plug-ins. JavaScript is prototype-based with first-class functions, making it a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles. It has an API for working with text, arrays, dates and regular expressions, but does not include any I/O, such as networking, storage or graphics facilities, relying for these upon the host environment in which it is embedded.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/JavaScript)
10 |
11 | ##### General Learning:
12 |
13 | * [codecademy.com JavaScript](https://www.codecademy.com/en/tracks/javascript) [interact]
14 | * [Crockford on JavaScript - Volume 1: The Early Years](https://www.youtube.com/watch?v=JxAXlJEmNMg) [watch]
15 | * [Crockford on JavaScript - Chapter 2: And Then There Was JavaScript](https://www.youtube.com/watch?v=RO1Wnu-xKoY) [watch]
16 | * [Crockford on JavaScript - Act III: Function the Ultimate](https://www.youtube.com/watch?v=ya4UHuXNygM) [watch]
17 | * [Crockford on JavaScript - Episode IV: The Metamorphosis of Ajax](https://www.youtube.com/watch?v=Fv9qT9joc0M) [watch]
18 | * [Crockford on JavaScript - Part 5: The End of All Things](https://www.youtube.com/watch?v=47Ceot8yqeI) [watch]
19 | * [Crockford on JavaScript - Scene 6: Loopage](https://www.youtube.com/watch?v=QgwSUtYSUqA) [watch]
20 | * [JavaScript Enlightenment](http://www.javascriptenlightenment.com/) [read]
21 | * [JavaScript Modules](http://jsmodules.io/cjs.html) [read]
22 | * [JavaScript Patterns](http://www.amazon.com/gp/product/0596806752/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0596806752&linkCode=as2&tag=fronenddevejo-20&linkId=K56OPQZNQNMPF6QI) [read][$]
23 | * [JS.Next: ES6](https://frontendmasters.com/courses/jsnext-es6/) [watch][$]
24 | * [The Principles of Object-Oriented JavaScript](http://www.amazon.com/gp/product/1593275404/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1593275404&linkCode=as2&tag=fronenddevejo-20&linkId=NQTZVDOIMJRGMAQM) [read][$]
25 | * [Professional JavaScript for Web Developers](http://www.amazon.com/gp/product/1118026691/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1118026691&linkCode=as2&tag=fronenddevejo-20&linkId=3ECZAIHNX6Z4FTME) [read][$]
26 | * [Setting up ES6](https://leanpub.com/setting-up-es6)
27 | * [Speaking JavaScript](http://speakingjs.com/es5/index.html) [read]
28 | * [Understanding ECMAScript 6](https://github.com/nzakas/understandinges6) [read]
29 | * [You Don't Know JS: Up & Going](https://github.com/getify/You-Dont-Know-JS/blob/master/up%20&%20going/README.md#you-dont-know-js-up--going) [read]
30 |
31 | ##### Mastering:
32 |
33 | * [Advanced JavaScript](https://frontendmasters.com/courses/advanced-javascript/) [watch][$]
34 | * [ECMA-262 by Dmitry Soshnikov](http://dmitrysoshnikov.com/) [read]
35 | * [Eloquent JavaScript](http://eloquentjavascript.net/) [read]
36 | * [Gentle explanation of 'this' keyword in JavaScript](http://rainsoft.io/gentle-explanation-of-this-in-javascript/) [read]
37 | * [Functional JavaScript: Introducing Functional Programming with Underscore.js](http://www.amazon.com/gp/product/1449360726/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1449360726&linkCode=as2&tag=fronenddevejo-20&linkId=BDQC3FTEB3YXTYCK) [read][$]
38 | * [High Performance JavaScript (Build Faster Web Application Interfaces)](http://www.amazon.com/Performance-JavaScript-Faster-Application-Interfaces/dp/059680279X/ref=sr_1_1) [read][$]
39 | * [JavaScript Allongé](https://leanpub.com/javascriptallongesix) [read][$]
40 | * [JavaScript with Promises](http://www.amazon.com/JavaScript-Promises-Daniel-Parker/dp/1449373216/ref=pd_sim_sbs_14_5) [read][$]
41 | * [JavaScript Regular Expression Enlightenment](http://codylindley.com/techpro/2013_05_14__javascript-regular-expression-/) [read]
42 | * [The Good Parts of JavaScript and the Web](https://frontendmasters.com/courses/good-parts-javascript-web/) [watch][$]
43 | * [Test-Driven JavaScript Development](http://www.amazon.com/dp/0321683919/) [read][$]
44 | * [Using Regular Expressions](http://www.lynda.com/Regular-Expressions-tutorials/Using-Regular-Expressions/85870-2.html) [watch][$]
45 | * [You Don't Know JS: Async & Performance](https://github.com/getify/You-Dont-Know-JS/blob/master/async%20&%20performance/README.md#you-dont-know-js-async--performance) [read]
46 | * [You Don't Know JS: ES6 & Beyond](https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20&%20beyond/README.md#you-dont-know-js-es6--beyond) [read]
47 | * [You Don't Know JS: Scope & Closures](https://github.com/getify/You-Dont-Know-JS/blob/master/scope%20&%20closures/README.md#you-dont-know-js-scope--closures) [read]
48 | * [You Don't Know JS: this & Object Prototypes](https://github.com/getify/You-Dont-Know-JS/blob/master/this%20&%20object%20prototypes/README.md#you-dont-know-js-this--object-prototypes) [read]
49 | * [You Don't Know JS: Types & Grammar](https://github.com/getify/You-Dont-Know-JS/blob/master/types%20&%20grammar/README.md#you-dont-know-js-types--grammar) [read]
50 |
51 | ##### References/Docs:
52 |
53 | * [MDN JavaScript Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference)
54 |
55 | ##### Glossary/Encyclopedia/Jargon:
56 |
57 | * [The JavaScript Encyclopedia](http://www.crockford.com/javascript/encyclopedia/)
58 | * [JavaScript Glossary](https://www.codecademy.com/articles/glossary-javascript)
59 | * [Simplified JavaScript Jargon](https://github.com/HugoGiraudel/SJSJ)
60 |
61 | ##### Standards/Specifications:
62 |
63 | * [ECMAScript® 2015 Language Specification](http://www.ecma-international.org/ecma-262/6.0/)
64 | * [Status, Process, and Documents for ECMA262](https://github.com/tc39/ecma262)
65 |
66 | ##### Style:
67 |
68 | * [Airbnb JavaScript Style Guide](http://airbnb.io/javascript/)
69 | * [Node.js Style Guide](https://github.com/felixge/node-style-guide)
70 | * [Principles of Writing Consistent, Idiomatic JavaScript](https://github.com/rwaldron/idiomatic.js)
71 |
72 | ##### JavaScript Newsletters, News, & Podcasts:
73 |
74 | * [Echo JS](http://www.echojs.com/)
75 | * [FiveJS](https://fivejs.codeschool.com/)
76 | * [JavaScript Jabber](https://devchat.tv/js-jabber/)
77 | * [JavaScript Kicks](http://javascriptkicks.com/)
78 | * [JavaScript Live](https://jslive.com/)
79 | * [JavaScript Weekly](http://javascriptweekly.com/)
80 | * [JavaScript.com](https://www.javascript.com/news)
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
--------------------------------------------------------------------------------
/learning/json.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn JSON (JavaScript Object Notation)
6 |
7 | > JSON, (canonically pronounced sometimes JavaScript Object Notation), is an open standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs. It is the primary data format used for asynchronous browser/server communication (AJAJ), largely replacing XML (used by AJAX).
8 | >
9 | > Although originally derived from the JavaScript scripting language, JSON is a language-independent data format. Code for parsing and generating JSON data is readily available in many programming languages.
10 | >
11 | > The JSON format was originally specified by Douglas Crockford. It is currently described by two competing standards, RFC 7159 and ECMA-404. The ECMA standard is minimal, describing only the allowed grammar syntax, whereas the RFC also provides some semantic and security considerations. The official Internet media type for JSON is application/json. The JSON filename extension is .json.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/JSON)
14 |
15 | ##### General Learning:
16 |
17 | * [Introduction to JavaScript Object Notation: A To-the-Point Guide to JSON](http://www.amazon.com/Introduction-JavaScript-Object-Notation-Point/dp/1491929480/ref=pd_sim_sbs_14_1) [read][$]
18 | * [json.com](https://www.json.com/) [read]
19 | * [What is JSON](https://mijingo.com/lessons/what-is-json/) [watch]
20 |
21 | ##### References/Docs:
22 |
23 | * [json.org](http://json.org/) [read]
24 |
25 | ##### Standards/Specifications:
26 |
27 | * [ECMA-404 The JSON Data Interchange Format](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf)
28 | * [RFC 7159 The JavaScript Object Notation (JSON) Data Interchange Format](https://tools.ietf.org/html/rfc7159)
29 |
30 | ##### Architecting:
31 |
32 | * [JSON API](http://jsonapi.org/)
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/learning/learn-from.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Developers to Learn From
6 |
7 | The notion that you should follow an individual to learn about front-end development is slowly becoming pointless. The advanced practitioners of front-end development generate enough content that you can simply follow the community/leaders by paying attention to the front-end "news" outlets (via Newsletters, News outlet, & Podcasts).
8 |
--------------------------------------------------------------------------------
/learning/module.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Module Loading and Dependency Management
6 |
7 | ##### General Learning:
8 |
9 | * [browserify-handbook](https://github.com/substack/browserify-handbook) [read]
10 | * [Choose ES6 modules Today!](http://developer.telerik.com/featured/choose-es6-modules-today/) [read]
11 | * [Creating JavaScript Modules with Browserify](http://www.pluralsight.com/courses/creating-javascript-modules-browserify) [watch][$]
12 | * [Start your own JavaScript library using webpack and ES6](http://krasimirtsonev.com/blog/article/javascript-library-starter-using-webpack-es6)
13 | * [Webpack Fundamentals](http://www.pluralsight.com/courses/webpack-fundamentals) [watch][$]
14 |
15 | ##### References/Docs:
16 |
17 | * [browserify](http://browserify.org/)
18 | * [system.js](https://github.com/systemjs/systemjs)
19 | * [webpack](http://webpack.github.io/)
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/learning/multi-thing-dev.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Multi-Thing Development
6 |
7 | 
8 |
9 | Image source: http://bradfrost.com/blog/post/this-is-the-web/
10 |
11 | A site or application can run on a wide range of computers, laptops, tablets and phones, as well as a handful of other things (watches, thermostats, fridges, etc.). How you determine what things you'll support and how you will develop to support those things is called a multi-thing development strategy. Below, I list the most common multi-thing development strategies.
12 |
13 | * Build a [responsive (RWD)](https://en.wikipedia.org/wiki/Responsive_web_design) web site/app for all things.
14 | * Build a [RESS (responsive web design with server-side components)](http://www.lukew.com/ff/entry.asp?1392) web site/app for all things.
15 | * Build an [adaptive/progressively](https://en.wikipedia.org/wiki/Adaptive_web_design) enhanced web site/app for all things.
16 | * Build a website, web app, native app, or hybrid-native app for each individual thing or a grouping of things.
17 | * Attempt to retrofit something you have already built using bits and parts from strategies 1, 2 or 3. This could be as simple as sprinkling in some screen-size agnostic UI parts or attempting to fully support other things with the entire UI.
18 |
19 | ##### General Learning:
20 |
21 | * [Adaptive Web Design](http://adaptivewebdesign.info/) [read][$]
22 | * [Designing Multi-Device Experiences: An Ecosystem Approach to User Experiences across Devices](http://www.amazon.com/Designing-Multi-Device-Experiences-Ecosystem-Approach/dp/1449340385/ref=pd_sim_14_8) [read][$]
23 | * [Designing with Progressive Enhancement](https://www.filamentgroup.com/dwpe/) [read][$]
24 | * [Mobile Web Development](https://www.udacity.com/course/mobile-web-development--cs256) [watch]
25 | * [Responsive HTML Email Design](https://frontendmasters.com/courses/responsive-email/) [watch][$]
26 | * [Responsive Images](https://www.udacity.com/course/responsive-images--ud882) [watch]
27 | * [Responsive Typography](https://www.pluralsight.com/courses/responsive-typography) [watch][$]
28 | * [Responsive Web Design](https://frontendmasters.com/courses/responsive-web-design/) [watch][$]
29 | * [Responsive Web Design Fundamentals](https://www.udacity.com/courses/web-development) [watch]
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/learning/news-podcasts.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Newsletters, News Sites, & Podcasts
6 |
7 | ##### General Front-End Newsletters, News, & Podcasts:
8 |
9 | * [The Big Web Show](http://5by5.tv/bigwebshow)
10 | * [Fresh Brewed Frontend](https://freshbrewed.co/frontend/)
11 | * [Front-End Dev Weekly](http://frontenddevweekly.com/)
12 | * [Front-End News in 5 Minutes](https://frontendfive.codeschool.com/)
13 | * [frontendfront.com](http://frontendfront.com/)
14 | * [Mobile Web Weekly](http://mobilewebweekly.co/)
15 | * [Open Web Platform Daily Digest](http://webplatformdaily.org/)
16 | * [O'Reilly Web Platform Radar](http://radar.oreilly.com/web-platform)
17 | * [shoptalkshow.com](http://shoptalkshow.com/)
18 | * [TTL](http://ttlpodcast.com/)
19 | * [Viewsources](https://viewsourc.es/)
20 | * [The Web Ahead](http://thewebahead.net/)
21 | * [Web Components Weekly](http://webcomponentsweekly.me/)
22 | * [Web Design Weekly](https://web-design-weekly.com/)
23 | * [The Web Platform Podcast](http://thewebplatform.libsyn.com/)
24 | * [webtoolsweekly.com](http://webtoolsweekly.com/)
25 |
26 | ##### HTML/CSS Newsletters:
27 |
28 | * [CSS Weekly](http://css-weekly.com/archives/)
29 | * [HTML 5 Weekly](http://html5weekly.com/)
30 |
31 | ##### JavaScript Newsletters, News, & Podcasts:
32 |
33 | * [Echo JS](http://www.echojs.com/)
34 | * [FiveJS](https://fivejs.codeschool.com/)
35 | * [JavaScript Jabber](https://devchat.tv/js-jabber/)
36 | * [JavaScript Kicks](http://javascriptkicks.com/)
37 | * [JavaScript Live](https://jslive.com/)
38 | * [JavaScript Weekly](http://javascriptweekly.com/)
39 | * [JavaScript.com](https://www.javascript.com/news)
40 |
41 | ##### Graphic and Animation Newsletters and Podcasts
42 |
43 | * [Motion and Meaning](http://motionandmeaning.io/)
44 | * [Responsive Images Community Group Newsletter](https://responsiveimages.org/#newsletter)
45 | * [SVG Immersion Podcast](http://svgimmersion.com/)
46 | * [Web Animation Weekly](http://rachelnabors.us1.list-manage.com/subscribe?u=0a8f219cf8284562f91a26ee9&id=d60f6683d2)
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/learning/node.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Node.js
6 |
7 | > Node.js is an open-source, cross-platform runtime environment for developing server-side web applications. Node.js applications are written in JavaScript and can be run within the Node.js runtime on OS X, Microsoft Windows, Linux, FreeBSD, NonStop,[3] IBM AIX, IBM System z and IBM i. Its work is hosted and supported by the Node.js Foundation,[4] a collaborative project at Linux Foundation.[5]
8 | >
9 | > Node.js provides an event-driven architecture and a non-blocking I/O API designed to optimize an application's throughput and scalability for real-time web applications. It uses Google V8 JavaScript engine to execute code, and a large percentage of the basic modules are written in JavaScript. Node.js contains a built-in library to allow applications to act as a web server without software such as Apache HTTP Server, Nginx or IIS.
10 |
11 | >— [Wikipedia](https://en.wikipedia.org/wiki/Node.js)
12 |
13 | ##### General Learning:
14 |
15 | * [The Art of Node](https://github.com/maxogden/art-of-node#the-art-of-node) [read]
16 | * [Introduction to Node.js](http://www.pluralsight.com/courses/node-intro) [watch][$]
17 | * [Introduction to Node.js from Evented Mind](https://www.eventedmind.com/classes/introduction-to-node-js-4c0326de) [watch][$]
18 | * [io.js and Node.js Next: Getting Started](http://www.pluralsight.com/courses/running-node-applications-io-js) [watch][$]
19 | * [Learn all the nodes](https://learnallthenodes.com/episodes/1-what-is-nodejs) [watch]
20 | * [The Node Beginner Book](https://leanpub.com/nodebeginner) [read][$]
21 | * [Nodeschool.io](http://nodeschool.io/) [code]
22 | * [Node.js Basics](http://teamtreehouse.com/library/nodejs-basics) [watch][$]
23 | * [Node.js in Practice](https://www.manning.com/books/node-js-in-practice#downloads) [read][$]
24 | * [Real-Time Web with Node.js](https://frontendmasters.com/courses/realtime-html5-nodejs/) [watch][$]
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/learning/offline.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Offline Development
6 |
7 | Offline development (aka offline first) is an area of knowledge and discussion around development practices for devices that are not always connected to the Internet or a power source.
8 |
9 | ##### General Learning:
10 |
11 | * [Creating HTML5 Offline Web Applications](http://apress.jensimmons.com/v5/pro-html5-programming/ch12.html) [read]
12 | * [Everything You Need to Know to Create Offline-First Web Apps](https://github.com/pazguille/offline-first) [read]
13 | * [Offline First](http://www.webdirections.org/offlineworkshop/ibooksDraft.pdf) [read]
14 | * [offlinefirst.org](http://offlinefirst.org) [read]
15 | * [Your First Offline Web App](https://developers.google.com/web/fundamentals/getting-started/your-first-offline-web-app/) [read]
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/learning/package-manager.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Package Manager
6 |
7 | > A package manager or package management system is a collection of software tools that automates the process of installing, upgrading, configuring, and removing software packages for a computer's operating system in a consistent manner. It typically maintains a database of software dependencies and version information to prevent software mismatches and missing prerequisites.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Package_manager)
10 |
11 | ##### General Learning:
12 |
13 | * [Bower Fundamentals](http://www.pluralsight.com/courses/bower-fundamentals) [watch][$]
14 | * [The Mystical & Magical SemVer Ranges Used By npm & Bower](http://developer.telerik.com/featured/mystical-magical-semver-ranges-used-npm-bower/) [read]
15 | * [npm Basics](http://teamtreehouse.com/library/npm-basics) [watch][$]
16 | * [The npm Book](https://leanpub.com/npm) [read]
17 | * [Package Managers: An Introductory Guide For The Uninitiated Front-End Developer](http://codylindley.com/techpro/2013_04_12__package-managers-an-introducto/) [read]
18 | * [Up and Running with NPM, the Node Package Manager](http://www.lynda.com/Developer-Web-Development-tutorials/Up-Running-NPM-Node-Package-Manager/409274-2.html)[watch][$]
19 |
20 | ##### References/Docs:
21 |
22 | * [bower](http://bower.io/)
23 | * [jspm.io](http://jspm.io/)
24 | * [npm](https://www.npmjs.com/)
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/learning/perf.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Site Performance Optimization
6 |
7 | > Web performance optimization, WPO, or website optimization is the field of knowledge about increasing the speed in which web pages are downloaded and displayed on the user's web browser. With the average internet speed increasing globally, it is fitting for website administrators and webmasters to consider the time it takes for websites to render for the visitor.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Web_performance_optimization)
10 |
11 | ##### General Learning:
12 |
13 | * [Browser Rendering Optimization](https://www.udacity.com/course/browser-rendering-optimization--ud860) [watch]
14 | * [Even Faster Web Sites: Performance Best Practices for Web Developers](http://www.amazon.com/Even-Faster-Web-Sites-Performance/dp/0596522304/ref=sr_1_5) [read][$]
15 | * [High Performance Web Sites: Essential Knowledge for Front-End Engineers](http://www.amazon.com/High-Performance-Web-Sites-Essential/dp/0596529309/ref=sr_1_3) [read][$]
16 | * [JavaScript Performance Rocks](http://javascriptrocks.com/) [read]
17 | * [PageSpeed Insights Rules](https://developers.google.com/speed/docs/insights/rules) [read]
18 | * [Performance Calendar](http://calendar.perfplanet.com/2014/) [read]
19 | * [perf.rocks](http://perf.rocks/)
20 | * [Using WebPageTest](http://www.amazon.com/Using-WebPageTest-Rick-Viscomi/dp/1491902590/ref=sr_1_1) [read][$]
21 | * [Web Performance Daybook Volume 2](http://www.amazon.com/Web-Performance-Daybook-Stoyan-Stefanov/dp/1449332919/ref=sr_1_4) [read][$]
22 | * [Web Performance: The Definitive Guide](http://shop.oreilly.com/product/0636920032427.do) [read]
23 | * [Website Performance](https://frontendmasters.com/courses/website-performance/) [watch][$]
24 | * [Website Performance Optimization](https://www.udacity.com/course/website-performance-optimization--ud884) [watch]
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/learning/security.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Security
6 |
7 | * [Browser Security Handbook](https://code.google.com/p/browsersec/wiki/Main) [read]
8 | * [Frontend Security](https://mikewest.org/2013/09/frontend-security-frontendconf-2013) [watch]
9 | * [HTML5 Security Cheatsheet](https://html5sec.org/#javascript) [read]
10 | * [Security for Web Developers: Using JavaScript, HTML, and CSS](http://www.amazon.com/Security-Web-Developers-Using-JavaScript/dp/1491928646/ref=sr_1_11) [read][$]
11 | * [The Tangled Web: A Guide to Securing Modern Web Applications](http://lcamtuf.coredump.cx/tangled/) [read][$]
12 | * [Web Security Basics](https://github.com/vasanthk/web-security-basics) [read]
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/learning/self-direct-learning.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Self Directed Learning
6 |
7 | This section focuses on free and paid resources (video training, books, etc.) that an individual can use to direct their own learning process and career as a front-end developer.
8 |
9 | The resources include free material and paid material. Paid material will be indicated with [$].
10 |
11 | The author believes that anyone with the right determination and dedication can teach themselves how to be a front-end developer. All that is required is a computer connected to the web and some cash for books and video training.
12 |
13 | Below are a few video learning outlets (tech focused) I generally recommend pulling content from:
14 |
15 | * [codecademy.com](https://codecademy.com)
16 | * [codeschool.com](https://www.codeschool.com/)
17 | * [egghead.io](https://egghead.io/)
18 | * [eventedmind.com](https://www.eventedmind.com/)
19 | * [Frontend Masters](https://frontendmasters.com/)
20 | * [Khan Academy](https://www.khanacademy.org/computing/computer-programming)
21 | * [laracasts.com](https://laracasts.com/)
22 | * [lynda.com](http://www.lynda.com/) [careful, quality varies]
23 | * [mijingo.com](https://mijingo.com/)
24 | * [pluralsight.com](http://www.pluralsight.com/) [careful, quality varies]
25 | * [Tagtree](http://tagtree.tv/library)
26 | * [Treehouse](https://teamtreehouse.com/)
27 | * [tutsplus.com](https://tutsplus.com/courses)
28 | * [Udacity](https://www.udacity.com/courses/web-development) [careful, quality varies]
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/learning/seo.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Search Engine Optimization
6 |
7 | > Search engine optimization (SEO) is the process of affecting the visibility of a website or a web page in a search engine's unpaid results — often referred to as "natural," "organic," or "earned" results. In general, the earlier (or higher ranked on the search results page), and more frequently a site appears in the search results list, the more visitors it will receive from the search engine's users. SEO may target different kinds of search, including image search, local search, video search, academic search, news search and industry-specific vertical search engines.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Search_engine_optimization)
10 |
11 | ##### General Learning:
12 |
13 | * [Google Search Engine Optimization Starter Guide](http://static.googleusercontent.com/media/www.google.com/en//webmasters/docs/search-engine-optimization-starter-guide.pdf) [read]
14 | * [SEO Fundamentals From David Booth](http://www.lynda.com/Analytics-tutorials/SEO-Fundamentals/187858-2.html) [watch][$]
15 | * [SEO Fundamentals From Paul Wilson](http://www.pluralsight.com/courses/seo-fundamentals) [watch][$]
16 | * [SEO Tutorial for Beginners 2015](http://www.hobo-web.co.uk/seo-tutorial/) [read]
17 | * [SEO for Web Designers](https://webdesign.tutsplus.com/courses/seo-for-web-designers) [watch][$]
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/learning/static.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Static Site Generators
6 |
7 | Static site generators, typically written using server side code (i.e., ruby, php, python, nodeJS, etc.), produces static HTML files from static text/data + templates that is indenting to be sent from a server to the client statically without a dynamic nature.
8 |
9 | ##### General Learning:
10 |
11 | * [Static Site Generators](http://www.oreilly.com/web-platform/free/static-site-generators.csp) [read]
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/learning/templates.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn JS Templates
6 |
7 | A JavaScript template is typically used, but not always with a [MV*](http://todomvc.com/) solution to separate parts of the view (i.e., the UI) from the logic and model (i.e., the data or JSON).
8 |
9 | Note that JavaScript 2015 (aka ES6) has a native templating mechanism called ["Templates strings"](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings).
10 |
11 | * [Instant Handlebars.js](http://www.amazon.com/Instant-Handlebars-js-Gabriel-Manricks/dp/1783282657/ref=sr_1_1) [read][$]
12 | * [JavaScript Templating with Handlebars](http://www.pluralsight.com/courses/handlebars-javascript-templating) [watch][$]
13 | * [Learn Handlebars in 10 Minutes or Less](http://tutorialzine.com/2015/01/learn-handlebars-in-10-minutes/) [read]
14 |
--------------------------------------------------------------------------------
/learning/test.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn JS Testing
6 |
7 | > **Unit Testing** - In computer programming, unit testing is a software testing method by which individual units of source code, sets of one or more computer program modules together with associated control data, usage procedures, and operating procedures, are tested to determine whether they are fit for use. Intuitively, one can view a unit as the smallest testable part of an application.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Unit_testing)
10 | >
11 | > **Functional Testing** - Functional testing is a quality assurance (QA) process and a type of black box testing that bases its test cases on the specifications of the software component under test. Functions are tested by feeding them input and examining the output, and internal program structure is rarely considered (not like in white-box testing). Functional testing usually describes what the system does.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/Functional_testing)
14 | >
15 | > **Integration Testing** - Integration testing (sometimes called integration and testing, abbreviated I&T) is the phase in software testing in which individual software modules are combined and tested as a group. It occurs after unit testing and before validation testing. Integration testing takes as its input modules that have been unit tested, groups them in larger aggregates, applies tests defined in an integration test plan to those aggregates, and delivers as its output the integrated system ready for system testing.
16 |
17 | >— [Wikipedia](https://en.wikipedia.org/wiki/Integration_testing)
18 |
19 | ##### General Learning:
20 |
21 | * [Front-End First: Testing and Prototyping JavaScript Apps](http://www.pluralsight.com/courses/testing-and-prototyping-javascript-apps) [watch][$]
22 | * [Let's Code: Test-Driven JavaScript](http://www.letscodejavascript.com/) [watch][$]
23 | * [JavaScript Testing Recipes](http://jstesting.jcoglan.com/) [read][$]
24 | * [Testable JavaScript](http://www.amazon.com/gp/product/1449323391/ref=pd_lpo_sbs_dp_ss_3) [read][$]
25 | * [Test-Driven JavaScript Development](http://tddjs.com/) [read][$]
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/learning/ui-design-patterns.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn User Interface/Interaction Design
6 |
7 | > **User Interface Design** - User interface design (UI) or user interface engineering is the design of user interfaces for machines and software, such as computers, home appliances, mobile devices, and other electronic devices, with the focus on maximizing the user experience. The goal of user interface design is to make the user's interaction as simple and efficient as possible, in terms of accomplishing user goals (user-centered design).
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/User_interface_design)
10 | >
11 | > **Interaction Design Pattern** - A design pattern is a formal way of documenting a solution to a common design problem. The idea was introduced by the architect Christopher Alexander for use in urban planning and building architecture, and has been adapted for various other disciplines, including teaching and pedagogy, development organization and process, and software architecture and design.
12 |
13 | >— [Wikipedia](https://en.wikipedia.org/wiki/Design_pattern)
14 | >
15 | > **User Experience Design** - User Experience Design (UXD or UED or XD) is the process of enhancing user satisfaction by improving the usability, accessibility, and pleasure provided in the interaction between the user and the product. User experience design encompasses traditional human–computer interaction (HCI) design, and extends it by addressing all aspects of a product or service as perceived by users.
16 |
17 | >— [Wikipedia](https://en.wikipedia.org/wiki/User_experience_design)
18 | >
19 | > **Human–Computer Interaction** - Human–computer interaction (HCI) researches the design and use of computer technology, focusing particularly on the interfaces between people (users) and computers. Researchers in the field of HCI both observe the ways in which humans interact with computers and design technologies that lets humans interact with computers in novel ways.
20 |
21 | >— [Wikipedia](https://en.wikipedia.org/wiki/Human%E2%80%93computer_interaction)
22 |
23 | Minimally I'd suggest reading the following canonical texts on the matter so one can build proper user interfaces.
24 |
25 | * [About Face: The Essentials of Interaction Design](http://www.amazon.com/About-Face-Essentials-Interaction-Design/dp/1118766571/ref=pd_sim_14_3) [read][$]
26 | * [Designing Interfaces ](http://www.amazon.com/Designing-Interfaces-Jenifer-Tidwell/dp/1449379702/ref=sr_1_1) [read][$]
27 | * [Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability](http://www.amazon.com/Dont-Make-Think-Revisited-Usability/dp/0321965515/ref=pd_sim_14_2) [read][$]
28 |
29 |
--------------------------------------------------------------------------------
/learning/version-control.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Version Control
6 |
7 | > A component of software configuration management, version control, also known as revision control or source control, is the management of changes to documents, computer programs, large web sites, and other collections of information. Changes are usually identified by a number or letter code, termed the "revision number," "revision level," or simply "revision." For example, an initial set of files is "revision 1." When the first change is made, the resulting set is "revision 2," and so on. Each revision is associated with a timestamp and the person making the change. Revisions can be compared, restored, and with some types of files, merged.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Version_control)
10 |
11 | The current modern solution for version control is [Git](https://git-scm.com/). Learn it!
12 |
13 | ##### General Learning:
14 |
15 | * [codeschool.com](https://try.github.io/levels/1/challenges/1) [interact]
16 | * [Getting Git Right](https://www.atlassian.com/git/) [read]
17 | * [Git Fundamentals](http://www.pluralsight.com/courses/git-fundamentals) [watch][$]
18 | * [Pro Git](http://git-scm.com/book/en/v2) [read]
19 | * [Ry's Git Tutorial](http://rypress.com/tutorials/git/introduction) [read]
20 |
21 | ##### Mastering:
22 |
23 | * [Advanced Git Tutorials](https://www.atlassian.com/git/tutorials/advanced-overview/) [read]
24 | * [Pro Git](http://git-scm.com/book/en/v2) [read]
25 | * [Learn Git Branching](http://learngitbranching.js.org/) [interact]
26 |
27 | ##### References/Docs:
28 |
29 | * [https://git-scm.com/doc](https://git-scm.com/docs)
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/learning/web-api.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Web/Browser APIs
6 |
7 | The BOM and the DOM are not the only browser APIs that are made available on the web platform inside of browsers. Everything that is not specifically the DOM or BOM, but an interface for programming the browser could be considered a web or browser API (tragically in the past some of these APIs have been called HTML5 APIs which confuses their own specifics/standardize with the actual HTML5 specification specify the HTML5 markup language). Note that web or browser APIs do include device APIs (e.g., [`Navigator.getBattery()`](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/getBattery)) that are available through the browser on tablet and phones devices.
8 |
9 | 
10 |
11 | Image source: http://www.evolutionoftheweb.com/
12 |
13 | You should be aware of and learn, where appropriate, web/browser APIs. A good tool to use to familiarize oneself with all of these APIs would be to investigate the [HTML5test.com results for the 5 most current browsers](https://html5test.com/compare/browser/chrome-44/firefox-40/ie-11/safari-9.0.html).
14 |
15 | ##### Learn:
16 |
17 | * [Dive Into HTML5](http://diveintohtml5.info/) [read]
18 | * [Pro HTML5 Programming](http://apress.jensimmons.com/v5/pro-html5-programming/info.html) [read]
19 |
20 | ##### Learn Audio:
21 | * [Add Sound to Your Site With Web Audio](https://code.tutsplus.com/courses/add-sound-to-your-site-with-web-audio) [watch]
22 | * [Fun With Web Audio](https://code.tutsplus.com/courses/fun-with-web-audio/) [watch]
23 | * [HTML5 Canvas](http://chimera.labs.oreilly.com/books/1234000001654/index.html) [read]
24 |
25 | ##### Learn Canvas:
26 |
27 | * [Web Audio API](http://chimera.labs.oreilly.com/books/1234000001552/index.html) [read]
28 |
29 | Additionally, MDN has a great deal of information about web/browser APIs.
30 |
31 | * [MDN Web API Reference](https://developer.mozilla.org/en-US/docs/Web/Reference/API)
32 | * [MDN Web APIs Interface Reference - All Interfaces, Arranged Alphabetically](https://developer.mozilla.org/en-US/docs/Web/API)
33 | * [MDN WebAPI - Lists Device Access APIs and Other APIs Useful for Applications](https://developer.mozilla.org/en-US/docs/WebAPI)
34 |
35 | Keep in mind that not every API is specified by the W3C or WHATWG.
36 |
37 | In addition to MDN, you might find the following resources helpful:
38 |
39 | * [The HTML 5 JavaScript API Index](http://html5index.org/)
40 | * [HTML5 Overview](https://github.com/dret/HTML5-overview)
41 | * [platform.html5.org](https://platform.html5.org/)
42 |
43 |
44 |
--------------------------------------------------------------------------------
/myIntro.md:
--------------------------------------------------------------------------------
1 |
2 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
3 |
4 | ***
5 |
6 | ## Front-End Developer Handbook 2016
7 |
8 | Written by [Cody Lindley](http://codylindley.com/) sponsored by — [Frontend Masters](https://frontendmasters.com/)
9 |
10 | This is a guide that anyone could use to learn about the practice of front-end development. It broadly outlines and discusses the practice of front-end engineering: how to learn it and what tools are used when practicing it in 2016.
11 |
12 | It is specifically written with the intention of being a professional resource for potential and currently practicing front-end developers to equip themselves with learning materials and development tools. Secondarily, it can be used by managers, CTOs, instructors, and head hunters to gain insights into the practice of front-end development.
13 |
14 | The content of the handbook favors web technologies (HTML, CSS, DOM, and JavaScript) and those solutions that are directly built on top of these open technologies. The materials referenced and discussed in the book are either best in class or the current offering to a problem.
15 |
16 | The book should not be considered a comprehensive outline of all resources available to a front-end developer. The value of the book is tied up in a terse, focused, and timely curation of just enough categorical information so as not to overwhelm anyone on any one particular subject matter.
17 |
18 | The intention is to release an update to the content yearly.
19 |
20 | The handbook is divided into three parts.
21 |
22 | ## Part I. The Front-End Practice
23 |
24 | Part one broadly describes the practice of front-end engineering.
25 |
26 | ## Part II: Learning Front-End Development
27 |
28 | Part two identifies self-directed and direct resources for learning to become a front-end developer.
29 |
30 | ## Part III: Front-End Development Tools
31 |
32 | Part three briefly explains and identifies tools of the trade.
33 |
34 | ***
35 |
36 | **Download a .pdf, .epub, or .mobi file from**:
37 |
38 | * [https://www.gitbook.com/book/frontendmasters/front-end-handbook/details](https://www.gitbook.com/book/frontendmasters/front-end-handbook/details)
39 |
40 | ***
41 |
42 | 
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "front-end-handbook",
3 | "version": "1.0.0",
4 | "repository": {
5 | "type": "git",
6 | "url": "git+https://github.com/FrontendMasters/front-end-handbook.git"
7 | },
8 | "scripts": {
9 | "start": "honkit serve",
10 | "build": "honkit build"
11 | },
12 | "devDependencies": {
13 | "gitbook-plugin-scripts": "^1.0.2",
14 | "honkit": "^5.0.0"
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/practice.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Part I. The Front-End Practice
6 |
7 | Part one broadly describes the practice of front-end engineering.
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/practice/fd-dev-for.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Developers Develop For...
6 |
7 | A front-end developer crafts HTML, CSS, and JS that typically runs on the web platform
8 | (e.g. a web browser) on one of the following operating systems (aka OSs):
9 |
10 | * Android
11 | * Chromium
12 | * iOS
13 | * OS X
14 | * Ubuntu (or some flavor of Linux)
15 | * Windows Phone
16 | * Windows
17 |
18 | These operating systems typically run on one or more of the following devices:
19 |
20 | * Desktop computer
21 | * Laptop / Netbook computer
22 | * Mobile phone
23 | * Tablet
24 | * TV
25 | * Watch
26 | * Things (i.e., anything you can imagine, car, refrigerator, lights, thermostat, etc.)
27 |
28 | 
29 |
30 | Image source: https://ams-ix.net/newsitems/87
31 |
32 | Generally speaking, front-end technologies can run on the aforementioned operating systems and devices using the following run time scenarios:
33 |
34 | * A web browser (examples: [Chrome, IE, Safari, Firefox](http://outdatedbrowser.com/en)) running on an OS.
35 | * A [headless browser](https://en.wikipedia.org/wiki/Headless_browser) (examples [phantomJS](http://phantomjs.org/)) driven from a CLI running on an OS.
36 | * A [WebView](http://developer.telerik.com/featured/what-is-a-webview/)/browser tab (think iframe) embedded within a native application as a runtime with bridge to native APIs. WebView applications typically contain a UI constructed from web technologies. (i.e., HTML, CSS, and JS). (examples: [Apache Cordova](https://cordova.apache.org/), [NW.js](http://nwjs.io/), [Electron](http://electron.atom.io/))
37 | * A native application built from web tech that is interpreted at runtime with a bridge to native APIs. The UI will make use of native UI parts (e.g., iOS native controls) not web technologies. (examples: [NativeScript](https://www.nativescript.org/), [React Native](https://facebook.github.io/react-native/))
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/practice/interview-q.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Interviews
6 |
7 | Questions you may get asked:
8 |
9 | * [10 Interview Questions Every JavaScript Developer Should Know](https://medium.com/javascript-scene/10-interview-questions-every-javascript-developer-should-know-6fa6bdf5ad95)
10 | * [Front-End Job Interview Questions](http://h5bp.github.io/Front-end-Developer-Interview-Questions/)
11 | * [Front End Web Development Quiz](http://davidshariff.com/quiz/)
12 | * [Interview Questions for Front-End-Developer](http://thatjsdude.com/interview/index.html)
13 | * [JavaScript Web Quiz](http://davidshariff.com/js-quiz/)
14 |
15 | Questions you ask:
16 |
17 | * [An open source list of developer questions to ask prospective employers](https://github.com/ChiperSoft/InterviewThis)
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/practice/jobboards.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Job Boards
6 |
7 | A plethora of technical job listing outlets exist. The narrowed list below are currently the most relevant resources for finding a specific front-end position/career.
8 |
9 | * [angularjobs.com](http://angularjobs.com/)
10 | * [authenticjobs.com](https://authenticjobs.com/#category=4)
11 | * [careers.stackoverflow.com](http://careers.stackoverflow.com/jobs?searchTerm=front-end)
12 | * [css-tricks.com/jobs](https://css-tricks.com/jobs/)
13 | * [frontenddeveloperjob.com](http://frontenddeveloperjob.com/)
14 | * [glassdoor.com](http://www.glassdoor.com/Job/front-end-developer-jobs-SRCH_KO0,19.htm?jobType=all)
15 | * [jobs.emberjs.com](http://jobs.emberjs.com/)
16 | * [jobs.github.com](https://jobs.github.com/)
17 | * [weworkremotely.com](https://weworkremotely.com/)
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/practice/making-fd.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## How Front-End Developers Are Made
6 |
7 | 
8 |
9 | Image source: http://cdn.skilledup.com/wp-content/uploads/2014/11/life-of-front-end-developer-infographic-Secondary.jpg
10 |
11 | How exactly does one become a front-end developer? Well, it's complicated. Still today you can't go to college and expect to graduate with a degree in front-end engineering. And, I rarely hear of or meet front-end developers who suffered through what is likely a deprecated computer science degree or graphic design degree to end up writing HTML, CSS, and JavaScript professionally. In fact, most of the people working on the front-end, even today, generally seem to be self taught and not traditionally trained as a programmer. Why is this the case?
12 |
13 | A front-end developer is not a focused visual designer or an interaction designer. Design school is not exactly the place to hone front-end skills. A front-end developer is not exactly a traditionally trained computer science graduate either. Focusing on either doesn't prepare a person for front-end development. And, in fact, following the traditional paths for either in the higher education systems of America (i.e., College) can derail a person from potentially finding a doorway into a practice where actual experience is king. Today, if you want to be a front-end developer, you teach yourself or you take what is likely a non accredited program, course, bootcamp, or class.
14 |
15 | A front-end engineer crafts the skeleton that the user interface rests upon. They must, at times, care as much about the interaction design as they do about the underlying code that creates the UI interactions. Therefore, many in practice today do not come to front-end engineering with programming skills, but, instead, from the other direction. That is, front-end development seems to be filled with more designer types turned developer than programmer types turned front-end developer. Of course, as JavaScript has grown up, so has the desire by more traditionally trained programmers to bring their knowledge to the front-end practice. If you are not aware, front-end developers have not always been considered by "real" programmers as, well, programmers. But times are a changing.
16 |
17 | With all of that said, I believe that the path to a career as a front-end developer is very much an unknown process. What I can say is that to become a front-end engineer one must know and use HTML, CSS, DOM, and JavaScript at a deep level without ignoring interaction design or traditional programming know how. In fact, from my experience, the best front-end developers often have a mastery understanding of interaction design and programming, but from the context of the web platform (i.e., browsers, HTML, CSS, DOM, and JavaScript). And for whatever reason, this knowledge is often discovered/approached not given. That is to say, front-end engineering still seems very much to be a practice made up of self taught people, as opposed to a field that corresponds directly to an educational focus from an organized and accredited higher learning situation.
18 |
19 | If you were to set out today to become a front-end developer I would loosely strive to follow the process outlined below. The process assumes you are your own best teacher.
20 |
21 | 1. Learn, roughly, how the web works. Make sure you know the "what" and "where" of Domains, DNS, URLs, HTTP, networks, browsers, servers/hosting, databases, JSON, data APIs, HTML, CSS, DOM, and JavaScript. The goal is to make sure you loosely know how it all works together and exactly what each part is doing. Focus on the high level outlines for front-end architectures. Start with simple web pages and briefly study [native web applications (aka SPAs)](https://blog.andyet.com/2015/01/22/native-web-apps).
22 | 2. Learn HTML, CSS, Accessibility, and SEO.
23 | 3. Learn the fundamentals of UI design patterns, interaction design, user experience design, and usability.
24 | 4. Learn the fundamentals of programming
25 | 5. [Learn JavaScript](https://youtu.be/QjKH1J77gjI?list=PL055Epbe6d5bQubu5EWf_kUNA3ef_qbmL)
26 | 6. Learn JSON and data APIs
27 | 7. Learn CLI/command line
28 | 8. Learn the practice of software engineering (i.e., Application design/architecture, templates, Git, testing, monitoring, automating, code quality, development methodologies).
29 | 9. Get opinionated and customize your tool box with whatever makes sense to your brain.
30 | 10. Learn Node.js
31 |
32 | Where you actually stop in the process is what will separate a front-end HTML/CSS developer from an expert level front-end application/JavaScript developer.
33 |
34 | A short word of advice on learning. [Learn the actual underlying technologies, before learning abstractions. Don't learn jQuery, learn the DOM. Don't learn SASS, learn CSS. Don't learn HAML, learn HTML. Don't learn CoffeeScript, learn JavaScript. Don't learn Handlebars, learn JavaScript ES6 templates. Don't just use Bootstrap, learn UI patterns. When getting your start, you should fear most things that conceal complexity](https://youtu.be/QjKH1J77gjI?list=PL055Epbe6d5bQubu5EWf_kUNA3ef_qbmL). Abstracts in the wrong hands can give the appearance of advanced skills, while all the time hiding the fact that a developer has an inferior understanding of the basics or underlying concepts. In short, a skilled front-end developer does not take a broken car to a mechanic, they are the mechanic.
35 |
36 | The rest of this book points a reader to the resources and tools to follow my previously suggested process. It is assumed that you are not only learning, but also doing as you learn and investigate tools. Some suggest only doing. While others suggest only learning about doing. I suggest you find a mix of both that matches how your brain works and do that. But, for sure, it is a mix! So, don't just read about it, do it. Learn, do. Learn, do. Repeat indefinitely because things change fast. This is why learning the fundamentals, and not abstractions, are so important.
37 |
38 | I should mention that lately a lot of non-accredited front-end code schools/bootcamps have emerged. These avenues of becoming a front-end developer are teacher directed in classroom (virtual and physical) courses, which follow a more traditional style of learning from an official instructor (i.e., syllabus, test, quizzes, projects, team projects, grades, etc.). I have more to say about these institutions in the direct learning section of this handbook. In brief, this is the web, everything you need to learn is on the web for the taking (costing little to nothing). However, if you need someone to tell you how to take what is actually free, and hold you accountable for learning it, you might consider an organized course. Otherwise, I am not aware of any other profession that is practically free for the taking with an internet connection and a burning desire for knowledge.
39 |
40 | If you want to get started immediately I'd suggest the following general overviews of the practice of front-end development:
41 |
42 | * [Frontend Guidelines](https://github.com/bendc/frontend-guidelines) [read]
43 | * [Being a web developer](http://www.yellowshoe.com.au/standards) [read]
44 | * [Isobar Front-End Code Standards](http://isobar-idev.github.io/code-standards/) [read]
45 | * [Web Fundamentals](https://developers.google.com/web/fundamentals) [read]
46 | * [Front-End Curriculum](https://gist.github.com/stevekinney/03027e71aac341af14a2) [read]
47 | * [freeCodeCamp](http://freecodecamp.com/) [interact]
48 | * [Planning a Front-end JS Application](https://www.youtube.com/watch?v=q4zEGkjTBFA) [watch]
49 | * [So, You Want to be a Front-End Engineer](https://www.youtube.com/watch?v=Lsg84NtJbmI) [watch]
50 | * [Front End Web Development Career Kickstart](http://www.pluralsight.com/courses/front-end-web-development-career-kickstart) [watch][$]
51 | * [Front End Web Development: Get Started](http://www.pluralsight.com/courses/front-end-web-development-get-started) [watch][$]
52 | * [Front-End Web Development Quick Start With HTML5, CSS, and JavaScript](http://www.pluralsight.com/courses/front-end-web-app-html5-javascript-css) [watch][$]
53 | * [Introduction to Web Development](https://frontendmasters.com/courses/web-development/) [watch][$]
54 | * [Foundations of Front-End Web Development](https://www.udemy.com/foundations-of-front-end-development/) [watch][$]
55 | * [Lean Front-End Engineering](https://frontendmasters.com/courses/lean-front-end-engineering/) [watch][$]
56 | * [A Baseline for Front-End [JS] Developers: 2015](http://rmurphey.com/blog/2015/03/23/a-baseline-for-front-end-developers-2015/) [read]
57 | * [Learn Front End Web Development](https://teamtreehouse.com/tracks/front-end-web-development) [watch][$]
58 | * [Front-End Dev Mastery](https://mijingo.com/products/bundles/front-end-dev-mastery/) [watch][$]
59 | * [Front-End Web Developer Nanodegree](https://www.udacity.com/course/front-end-web-developer-nanodegree--nd001) [watch][$]
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
--------------------------------------------------------------------------------
/practice/myth.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Generalist Myth
6 |
7 | 
8 |
9 | Image source: http://andyshora.com/full-stack-developers.html
10 |
11 | The roles required to design and develop a web solution require a deep skill set and vast experience in the area of visual design, UI/interaction design, front-end development, and back-end development. Any person (aka generalist or full-stack developer/designer) who can fill one or more of these 4 roles at a professional level is a rare exception to the rule.
12 |
13 | Pragmatically, you should seek to be, or seek to hire, an expert in one of these roles. Those who claim to operate at an expert level at one or more of these roles are exceptionally rare and more than likely mythical, given modern stacks.
14 |
15 | 
16 |
17 | Image source: http://andyshora.com/full-stack-developers.html
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/practice/salaries.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Salaries
6 |
7 | The national average in the U.S for a front-end developer is [$75k](http://www.glassdoor.com/Salaries/front-end-web-developer-salary-SRCH_KO0,23.htm).
8 |
9 | An experienced front-end developer potentially can live wherever they want (i.e., work remotely) and make over $150k a year (visit [angel.co](https://angel.co/jobs), sign-up, review front-end jobs over $150k).
10 |
11 | 
12 |
13 | Image source: http://intersog.com/blog/chicago-tech-salary-guide-2015/
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/practice/skills.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Dev Skills
6 |
7 | 
8 |
9 | Image source: http://blog.naustud.io/2015/06/baseline-for-modern-front-end-developers.html
10 |
11 | Basic to advanced HTML, CSS, DOM, JavaScript, HTTP/URL, and browser skills are assumed for any type of front-end developer.
12 |
13 | Beyond HTML, CSS, DOM, JavaScript, HTTP/URL, and browser development, a front-end developer could be skilled in one or more of the following:
14 |
15 | * Content Management Systems (aka CMS)
16 | * Node.js
17 | * Cross-Browser Testing
18 | * Cross-Platform Testing
19 | * Unit Testing
20 | * Cross-Device Testing
21 | * Accessibility / WAI-ARIA
22 | * Search Engine Optimization (aka SEO)
23 | * Interaction or User Interface Design
24 | * User Experience
25 | * Usability
26 | * E-commerce Systems
27 | * Portal Systems
28 | * Wireframing
29 | * CSS Layout / Grids
30 | * DOM Manipulation (e.g., jQuery)
31 | * Mobile Web Performance
32 | * Load Testing
33 | * Performance Testing
34 | * Progressive Enhancement / Graceful Degradation
35 | * Version Control (e.g., GIT)
36 | * MVC / MVVM / MV*
37 | * Functional Programming
38 | * Data Formats (e.g., JSON, XML)
39 | * Data APIs (e.g Restful API)
40 | * Web Font Embedding
41 | * Scalable Vector Graphics (aka SVG)
42 | * Regular Expressions
43 | * Content Strategy
44 | * Microdata / Microformats
45 | * Task Runners, Build Tools, Process Automation Tools
46 | * Responsive Web Design
47 | * Object-Oriented Programming
48 | * Application Architecture
49 | * Modules
50 | * Dependency Managers
51 | * Package Managers
52 | * JavaScript Animation
53 | * CSS Animation
54 | * Charts / Graphs
55 | * UI Widgets
56 | * Code Quality Testing
57 | * Code Coverage Testing
58 | * Code Complexity Analysis
59 | * Integration Testing
60 | * Command Line / CLI
61 | * Templating Strategies
62 | * Templating Engines
63 | * Single Page Applications
64 | * XHR Requests (aka AJAX)
65 | * Web/Browser Security
66 | * HTML Semantics
67 | * Browser Developer Tools
68 |
69 |
70 |
71 |
72 |
73 |
--------------------------------------------------------------------------------
/practice/team.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End on a Team
6 |
7 | A front-end developer is typically only one player on a team that designs and develops web sites, web applications, or native applications running on web technologies. (Note: A developer who builds everything was once called a "web master" but as of late these rare and mythical developers are called "full-stack developers").
8 |
9 | A bare bones team for building professional sites or software on the web will minimally contain the following roles.
10 |
11 | * Visual Designer (i.e., fonts, colors, spacing, emotion, visuals concepts & themes)
12 | * UI/Interaction Designer/Information Architect (i.e., wireframes, specifying all user interactions and UI functionality, structuring information)
13 | * Front-End Developer (i.e., writes code that runs in client/on device)
14 | * Back-End Developer (i.e., writes code that runs on server)
15 |
16 | The roles are ordered according to overlapping skills. A front-end developer will typically have a good handle on UI/Interaction design as well as back-end development. It is not uncommon for team members to fill more than one role by taking on the responsibilities of an over-lapping role.
17 |
18 | It is assumed that the team mentioned above is being directed by a project lead or some kind of product owner (i.e., stakeholder, project manager, project lead, etc.)
19 |
20 | A larger web team might include the following roles not shown above:
21 |
22 | * Visual Designers
23 | * Interface Design/Interaction Designer/Information Design
24 | * **SEO Strategist**
25 | * Front-End Developer
26 | * **DevOps Engineers**
27 | * Back-End Developer
28 | * **API Developer**
29 | * **Database Administrator**
30 | * **QA Engineer / Testers**
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/practice/tech-employed-by-fd.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Web Technologies Employed by Front-End Developers
6 |
7 | 
8 |
9 | Image source: http://www.2n2media.com/compare-front-end-development-and-back-end-development
10 |
11 | The following web technologies are employed by front-end developers:
12 |
13 | * Hyper Text Markup Language (aka HTML)
14 | * Cascading Style Sheets (aka CSS)
15 | * Document Object Model (aka DOM)
16 | * JavaScript Programming Language (aka: ECMAScript 6, ES6, JavaScript 2015)
17 | * Web APIs (aka HTML5 and friends or Browser APIs)
18 | * Hypertext Transfer Protocol (aka HTTP)
19 | * Uniform Resource Locators (aka URLs)
20 | * JavaScript Object Notation (aka JSON)
21 | * Web Content Accessibility Guidelines (aka WCAG) & Accessible Rich Internet Applications (aka ARIA)
22 |
23 | These technologies are defined below with the relevant documentation and specifications. For a comprehensive list of all web related specifications have a look at [platform.html5.org](https://platform.html5.org/).
24 |
25 | ##### Hyper Text Markup Language (aka HTML)
26 |
27 | > HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. Web browsers can read HTML files and render them into visible or audible web pages. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming language.
28 |
29 | >— [Wikipedia](https://en.wikipedia.org/wiki/HTML)
30 |
31 | Most relevant specifications / documentation:
32 |
33 | * [All W3C HTML Spec](http://www.w3.org/standards/techs/html#w3c_all)
34 | * [The elements of HTML from the Living Standard](https://html.spec.whatwg.org/multipage/semantics.html#semantics)
35 | * [Global attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes)
36 | * [HTML5 from W3C](http://www.w3.org/TR/html5/) : 5th major revision of the core language of the World Wide Web
37 | * [HTML attribute reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes)
38 | * [HTML element reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Element)
39 | * [The HTML Syntax](https://html.spec.whatwg.org/multipage/syntax.html#syntax) from the Living Standard
40 |
41 | ##### Cascading Style Sheets (aka CSS)
42 |
43 | > Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language. Although most often used to change the style of web pages and user interfaces written in HTML and XHTML, the language can be applied to any kind of XML document, including plain XML, SVG and XUL. Along with HTML and JavaScript, CSS is a cornerstone technology used by most websites to create visually engaging webpages, user interfaces for web applications, and user interfaces for many mobile applications.
44 |
45 | >— [Wikipedia](https://en.wikipedia.org/wiki/Cascading_Style_Sheets)
46 |
47 | Most relevant specifications / documentation:
48 |
49 | * [All W3C CSS Specifications](http://www.w3.org/Style/CSS/current-work#roadmap)
50 | * [Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification](https://drafts.csswg.org/css2/)
51 | * [CSS reference](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference)
52 | * [Selectors Level 3](http://www.w3.org/TR/css3-selectors/)
53 |
54 | ##### Document Object Model (aka DOM)
55 |
56 | > The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML, and XML documents. The nodes of every document are organized in a tree structure, called the DOM tree. Objects in the DOM tree may be addressed and manipulated by using methods on the objects. The public interface of a DOM is specified in its application programming interface (API).
57 |
58 | >— [Wikipedia](https://en.wikipedia.org/wiki/Document_Object_Model)
59 |
60 | Most relevant specifications / documentation:
61 |
62 | * [Document Object Model (DOM) Level 3 Events Specification](http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/)
63 | * [DOM Living Standard](https://dom.spec.whatwg.org/)
64 | * [W3C DOM4](http://www.w3.org/TR/2014/WD-dom-20140204/)
65 |
66 | ##### JavaScript Programming Language (aka: ECMAScript 6, ES6, JavaScript 2015)
67 |
68 | > JavaScript is a high level, dynamic, untyped, and interpreted programming language. It has been standardized in the ECMAScript language specification. Alongside HTML and CSS, it is one of the three essential technologies of World Wide Web content production; the majority of websites employ it and it is supported by all modern web browsers without plug-ins. JavaScript is prototype-based with first-class functions, making it a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles. It has an API for working with text, arrays, dates and regular expressions, but does not include any I/O, such as networking, storage or graphics facilities, relying for these upon the host environment in which it is embedded.
69 |
70 | >— [Wikipedia](https://en.wikipedia.org/wiki/JavaScript)
71 |
72 | Most relevant specifications / documentation:
73 |
74 | * [ECMAScript® 2015 Language Specification](http://www.ecma-international.org/ecma-262/6.0/)
75 |
76 | ##### Web APIs (aka HTML5 and friends)
77 |
78 | > When writing code for the Web using JavaScript, there are a great many APIs available. Below is a list of all the interfaces (that is, types of objects) that you may be able to use while developing your Web app or site.
79 |
80 | >— [Mozilla](https://developer.mozilla.org/en-US/docs/Web/API)
81 |
82 | Most relevant documentation:
83 |
84 | * [Web API Interfaces](https://developer.mozilla.org/en-US/docs/Web/API)
85 |
86 | ##### Hypertext Transfer Protocol (aka HTTP)
87 |
88 | > The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web.
89 |
90 | >— [Wikipedia](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol)
91 |
92 | Most relevant specifications:
93 |
94 | * [Hypertext Transfer Protocol -- HTTP/1.1](https://tools.ietf.org/html/rfc2616)
95 | * [Hypertext Transfer Protocol version 2 draft-ietf-httpbis-http2-16](https://tools.ietf.org/html/draft-ietf-httpbis-http2-16)
96 |
97 | ##### Uniform Resource Locators (aka URL)
98 |
99 | > A uniform resource locator (URL) (also called a web address) is a reference to a resource that specifies the location of the resource on a computer network and a mechanism for retrieving it. A URL is a specific type of uniform resource identifier (URI), although many people use the two terms interchangeably. A URL implies the means to access an indicated resource, which is not true of every URI. URLs occur most commonly to reference web pages (http), but are also used for file transfer (ftp), email (mailto), database access (JDBC), and many other applications.
100 |
101 | >— [Wikipedia](https://en.wikipedia.org/wiki/Uniform_Resource_Locator)
102 |
103 | Most relevant specifications:
104 |
105 | * [Uniform Resource Locators (URL)](http://www.w3.org/Addressing/URL/url-spec.txt)
106 | * [URL Living Standard](https://url.spec.whatwg.org/)
107 |
108 | ##### JavaScript Object Notation (aka JSON)
109 |
110 | > c It is the primary data format used for asynchronous browser/server communication (AJAJ), largely replacing XML (used by AJAX). Although originally derived from the JavaScript scripting language, JSON is a language-independent data format. Code for parsing and generating JSON data is readily available in many programming languages. The JSON format was originally specified by Douglas Crockford. It is currently described by two competing standards, RFC 7159 and ECMA-404. The ECMA standard is minimal, describing only the allowed grammar syntax, whereas the RFC also provides some semantic and security considerations. The official Internet media type for JSON is application/json. The JSON filename extension is .json.
111 |
112 | >— [Wikipedia](https://en.wikipedia.org/wiki/JSON)
113 |
114 | Most relevant specifications:
115 |
116 | * [Introducing JSON](http://json.org/)
117 | * [JSON API](http://jsonapi.org/)
118 | * [The JSON Data Interchange Format](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf)
119 |
120 | ##### Web Content Accessibility Guidelines (aka WCAG) & Accessible Rich Internet Applications (aka ARIA)
121 |
122 | > Accessibility refers to the design of products, devices, services, or environments for people with disabilities. The concept of accessible design ensures both “direct access” (i.e., unassisted) and "indirect access" meaning compatibility with a person's assistive technology (for example, computer screen readers).
123 |
124 | >— [Wikipedia](https://en.wikipedia.org/wiki/Accessibility)
125 |
126 | * [Accessible Rich Internet Applications (WAI-ARIA) Current Status](http://www.w3.org/standards/techs/aria#w3c_all)
127 | * [Web Accessibility Initiative (WAI)](http://www.w3.org/WAI/)
128 | * [Web Content Accessibility Guidelines (WCAG) Current Status](http://www.w3.org/standards/techs/wcag#w3c_all)
129 |
130 |
131 |
--------------------------------------------------------------------------------
/practice/types-of-front-end-dev.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Jobs Titles
6 |
7 | Below is a list and description of various front-end job titles. The common, or most used (i.e., generic), title for a front-end developer is, "front-end developer" or "front-end engineer". Note that any job that contains the word "front-end", "client-side", "web UI", "HTML", "CSS", or "JavaScript" typically infers that a person has some degree of HTML, CSS, DOM, and JavaScript professional know how.
8 |
9 | ***
10 |
11 | **Front-End Developer/Engineer** (aka Front-End Web Developer/Engineer, Client-Side Developer/Engineer, Front-End Software Developer/Engineer or UI Engineer)
12 |
13 | The generic job title that describes a developer who is skilled to some degree at HTML, CSS, DOM, and JavaScript and implementing these technologies on the web platform.
14 |
15 | ***
16 |
17 | **CSS/HTML Developer**
18 |
19 | The front-end job title that describes a developer who is skilled at HTML and CSS, excluding JavaScript and Application know how.
20 |
21 | ***
22 |
23 | **Front-End JavaScript (optionally...Application) Developer**
24 |
25 | When the word "JavaScript Application" is included in the job title, this will denote that the developer should be an advanced JavaScript developer possessing advanced programming, software development, and application development skills (i.e will have solid experience building front-end applications).
26 |
27 | ***
28 |
29 | **Front-End Web Designer**
30 |
31 | When the word "Designer" is included in the job title, this will denote that the designer will posses front-end skills (i.e., HTML & CSS) but also professional design (Visual Design and Interaction Design) skills.
32 |
33 | ***
34 |
35 | **Web/Front-End User Interface (aka UI) Developer/Engineer**
36 |
37 | When the word "Interface" or "UI" is included in the job title, this will denote that the developer should posses interaction design skills in addition to front-end skills.
38 |
39 | ***
40 |
41 | **Mobile/Tablet Front-End Developer**
42 |
43 | When the word "Mobile" or "Tablet" is included in the job title, this will denote that the developer has experience developing front-ends that run on mobile or tablet devices (either natively or on the web platform, i.e., in a browser).
44 |
45 | ***
46 |
47 | **Front-End SEO Expert**
48 |
49 | When the word "SEO" is included in the job title, this will denote that the developer has extensive experience crafting front-end technologies towards an SEO strategy.
50 |
51 | ***
52 |
53 | **Front-End Accessibility Expert**
54 |
55 | When the word "Acessibility" is included in the job title, this will denote that the developer has extensive experience crafting front-end technologies that support accessibility requirements and standards.
56 |
57 | ***
58 |
59 | **Front-End Dev. Ops**
60 |
61 | When the word "DevOps" is included in the job title, this will denote that the developer has extensive experience with software development practices pertaining to collaboration, integration, deployment, automation, and measurement.
62 |
63 | ***
64 |
65 | **Front-End Testing/QA**
66 |
67 | When the word "Testing" or "QA" is included in the job title, this will denote that the developer has extensive experience testing and managing software that involves unit testing, functional testing, user testing, and A/B testing.
68 |
69 | ***
70 |
71 | Note that if you come across the "Full Stack" or the generic "Web Developer" terms in job titles these words may be used by an employer to describe a role that is responsible for all aspects of web/app development, i.e., both front-end (potentially including design) and back-end.
72 |
73 |
--------------------------------------------------------------------------------
/styles/ebook.css:
--------------------------------------------------------------------------------
1 | cite{
2 | margin-top: -30px;
3 | font-size:10px;
4 | text-align: center;
5 | color: #666;
6 | }
7 |
8 | .page-inner ul, .page-inner ol {
9 | margin-bottom:15px !important;
10 | }
--------------------------------------------------------------------------------
/styles/website.css:
--------------------------------------------------------------------------------
1 | body {
2 | display: flex;
3 | flex-direction: column;
4 | }
5 |
6 | cite{
7 | margin-top: -30px;
8 | font-size:10px;
9 | text-align: center;
10 | color: #666;
11 | }
12 |
13 | .page-inner ul, .page-inner ol {
14 | margin-bottom:15px !important;
15 | }
16 |
17 | small{
18 | font-size:10px;
19 | }
20 |
21 | .FmCta {
22 | align-items: flex-start;
23 | background: #000;
24 | color: #fff;
25 | display: flex;
26 | gap: 15px;
27 | line-height: 2;
28 | padding: 10px 15px;
29 | }
30 |
31 | .FmCtaLogo svg {
32 | fill: #c02d28;
33 | vertical-align: middle;
34 | width: 25px;
35 | }
36 |
37 | .FmCtaLogo:hover svg {
38 | fill: #dd625e;
39 | }
40 |
41 | .FmCtaText {
42 | display: flex;
43 | flex: 1;
44 | gap: 15px;
45 | }
46 |
47 | .FmCtaText a {
48 | color: #ccc;
49 | font-weight: bold;
50 | }
51 |
52 | .FmCtaText a:hover {
53 | color: #fff;
54 | }
55 |
56 | .FmCtaClose {
57 | background: none;
58 | border: none;
59 | color: #888;
60 | font-size: 25px;
61 | height: 30px;
62 | line-height: 1;
63 | outline: none;
64 | padding-bottom: 5px;
65 | width: 30px;
66 | }
67 |
68 | .FmCtaClose:hover {
69 | color: #fff;
70 | }
--------------------------------------------------------------------------------
/template.md:
--------------------------------------------------------------------------------
1 | # First Chapter
2 |
3 | GitBook allows you to organize your book into chapters, each chapter is stored in a separate file like this one.
4 |
--------------------------------------------------------------------------------
/tools.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Part III: Tools
6 |
7 | Part three briefly explains and identifies tools of the trade.
8 |
9 | Make sure you understanding the category that a set of tools falls within, before studying the tools themselves.
10 |
11 | Note that just because a tool is listed, or a category of tools is documented, this does not equate to an assertion on my part that a front-end developer should learn it and use it. Choose your own toolbox. I'm just providing the common toolbox options.
12 |
13 | 
14 |
15 | Image source: https://medium.com/@withinsight1/the-front-end-spectrum-c0f30998c9f0
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/tools/animation.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Animation Tools
6 |
7 | * [Dynamics.js](https://github.com/michaelvillar/dynamics.js)
8 | * [GreenSock-JS](https://github.com/greensock/GreenSock-JS)
9 | * [snabbt.js](http://daniel-lundin.github.io/snabbt.js/)
10 | * [TweenJS](https://github.com/CreateJS/TweenJS)
11 | * [Velocity.js](http://julian.com/research/velocity/)
12 |
13 | ##### Polyfills/Shims:
14 |
15 | * [web-animations-js](https://github.com/web-animations/web-animations-js)
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/tools/apps.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## App (Desktop, Mobile, Tablet, etc.) Tools
6 |
7 | ##### Front-End App Frameworks:
8 |
9 | * [AngularJS](https://angularjs.org/) & [Batarang](https://github.com/angular/angularjs-batarang)
10 | * [Aurelia](http://aurelia.io/)
11 | * [Backbone](http://backbonejs.org/) & [Marionette](http://marionettejs.com/)
12 | * [Ember](http://emberjs.com/) & [Ember Inspector](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi?hl=en)
13 | * [Polymer](https://www.polymer-project.org/1.0/) & [Iron Elements](https://elements.polymer-project.org/browse?package=iron-elements) & [Paper Elements](https://elements.polymer-project.org/browse?package=paper-elements)
14 | * [React](http://facebook.github.io/react/) & [React-router](https://github.com/rackt/react-router) & [Flux](http://facebook.github.io/flux/) & [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi)
15 | * [Vue.js](http://vuejs.org/) & [vue-loader](https://github.com/vuejs/vue-loader) & [vue-router](https://github.com/vuejs/vue-router)
16 |
17 | ##### Full-Stack JS App Platforms:
18 |
19 | * [Hoodie](http://hood.ie/intro/)
20 | * [MEAN](http://meanjs.org/) (i.e., MongoDB, Express, AngularJS, and Node.js.)
21 | * [Meteor](https://www.meteor.com/)
22 |
23 | ##### Mobile Web UI/Site/App Frameworks
24 |
25 | These solutions can be used anywhere including in a WebView (i.e., web platform and browser engine) app:
26 |
27 | * [Framework7](http://www.idangero.us/framework7)
28 | * [Kendo UI Mobile](http://demos.telerik.com/kendo-ui/m/index)
29 | * [Mobile Angular UI](http://mobileangularui.com/)
30 | * [Ratchet](http://goratchet.com/getting-started/)
31 |
32 | ##### Native Hybrid Mobile WebView (i.e., Browser Engine Driven) Frameworks:
33 |
34 | These solutions typically use [Cordova](https://cordova.apache.org/), [crosswalk](https://crosswalk-project.org/), or a custom WebView as a bridge to native APIs.
35 |
36 | * [ionic](http://ionicframework.com/)
37 | * [onsen.io](http://onsen.io/)
38 |
39 | ##### Native Hybrid Mobile Development Webview (i.e., Browser Engine Driven) Environments/Platforms/Tools:
40 |
41 | These solutions typically use [Cordova](https://cordova.apache.org/), [crosswalk](https://crosswalk-project.org/), or a custom WebView as a bridge to native APIs.
42 |
43 | * [Adobe PhoneGap](http://phonegap.com/) [$]
44 | * [AppBuilder](http://www.telerik.com/appbuilder) [$]
45 | * [cocoon.io](https://cocoon.io) [free to $]
46 | * [ionic hub](http://ionic.io/) [free to $]
47 | * [kony](http://www.kony.com/products/mobility-platform) [$]
48 | * [manifoldJS](http://manifoldjs.com/)
49 | * [Monaca](https://monaca.io/) [$]
50 | * [Taco](http://taco.tools/)
51 |
52 | ##### Native Desktop WebView (i.e., Browser Engine Driven) App Frameworks:
53 |
54 | * [Electron](http://electron.atom.io/)
55 | * [NW.js](https://github.com/nwjs/nw.js)
56 |
57 | ##### Native Mobile App Frameworks (Aka JavaScript Native Apps)
58 |
59 | These solutions use a JS engine at runtime to interpret JS and bridge that to native APIs. No browser engine or WebView is used. The UI is constructed from native UI components.
60 |
61 | * [NativeScript](https://www.nativescript.org/)
62 | * [React Native](https://facebook.github.io/react-native/)
63 | * [tabris.js](https://tabrisjs.com/) [free to $]
64 | * [trigger.io](https://trigger.io/how-it-works/) [$]
65 |
66 | ##### References:
67 |
68 | * [todomvc.com](http://todomvc.com/)
69 | * [Frontend Guidelines Questionnaire](https://github.com/bradfrost/frontend-guidelines-questionnaire)
70 |
71 | ##### App Seeds/Starters/Boilerplates:
72 |
73 | * [Angular 2 Webpack Starter](http://angularclass.com/angular2-webpack-starter/)
74 | * [Ember starter-kit](https://github.com/emberjs/starter-kit)
75 | * [NG6-starter](https://github.com/angular-class/NG6-starter)
76 | * [hjs-webpack](https://github.com/henrikjoreteg/hjs-webpack#developing-on-multiple-devices-at-once)
77 | * [React Starter Kit](http://www.reactstarterkit.com/)
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
--------------------------------------------------------------------------------
/tools/baas.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Back-end as a service (aka BAAS) tools for front-end developers
6 |
7 | ##### Data/back-end management as a service:
8 |
9 | * [Back&](https://www.backand.com/) [free to $]
10 | * [Firebase](https://www.firebase.com/index.html) [free to $]
11 | * [Kinvey](http://www.kinvey.com/) [free'ish to $]
12 | * [Pusher](https://pusher.com/) [free to $]
13 |
14 | ##### User Management as a Service:
15 |
16 | * [Auth0](https://auth0.com) [$]
17 | * [Hull](http://www.hull.io/) [$]
18 | * [UserApp](https://www.userapp.io/) [free to $]
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/tools/browsedocs.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Doc/API Browsing Tools
6 |
7 | Tools to browser common developer documents and developer API references.
8 |
9 | * [Dash](https://kapeli.com/dash) [OS X, iOS][$]
10 | * [DevDocs](http://devdocs.io/)
11 | * [Velocity](https://velocity.silverlakesoftware.com/) [Windows][$]
12 | * [Zeal](https://zealdocs.org/) [Windows, Linux]
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/tools/browser.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Browser Tools
6 |
7 | ##### JS Browser Coding Utilities:
8 |
9 | * [History.js](https://github.com/browserstate/history.js)
10 | * [html2canvas](https://github.com/niklasvh/html2canvas)
11 | * [Platform.js](https://github.com/bestiejs/platform.js)
12 | * [URI.js](http://medialize.github.io/URI.js/)
13 |
14 | ##### General Reference Tools to Determine If X Browser Supports X:
15 |
16 | * [Big JS-Compatibility-Table](http://compatibility.shwups-cms.ch/en/home)
17 | * [Browser support for broken/missing images](http://codepen.io/bartveneman/full/qzCte/)
18 | * [Browserscope](http://www.browserscope.org/)
19 | * [caniuse.com](http://caniuse.com/)
20 | * [Firefox Platform Status - Implementation & standardization roadmap for web platform features](https://platform-status.mozilla.org/)
21 | * [HTML5 Please](http://html5please.com/)
22 | * [HTML5 Test](https://html5test.com/)
23 | * [iwanttouse.com/](http://www.iwanttouse.com/)
24 | * [jscc.info](http://jscc.info/)
25 | * [Platform Status](https://dev.modern.ie/platform/status/)
26 | * [webbrowsercompatibility.com](http://www.webbrowsercompatibility.com/)
27 | * [whatwebcando.today](https://whatwebcando.today/)
28 |
29 | ##### Browser Development/Debug Tools:
30 |
31 | * [Chrome Developer Tools (aka DevTools)](https://developers.google.com/web/tools/?hl=en)
32 | - [Per-Panel Documentation](https://developers.google.com/web/tools/chrome-devtools/#docs)
33 | - [Command Line API Reference](https://developers.google.com/web/tools/javascript/command-line/command-line-reference?hl=en)
34 | - [Keyboard & UI Shortcuts Reference](https://developers.google.com/web/tools/iterate/inspect-styles/shortcuts)
35 | - [Settings](https://developer.chrome.com/devtools/docs/settings)
36 | * [Firefox Developer Tools](https://developer.mozilla.org/en-US/docs/Tools)
37 | * [IE Developer tools (aka F12 tools)](https://dev.modern.ie/platform/documentation/f12-devtools-guide/)
38 | * [Opera Dragonfly](http://www.opera.com/dragonfly/)
39 | * [Safari Web Inspector](https://developer.apple.com/safari/tools/)
40 | * [Vorlon.js](http://vorlonjs.com/)
41 |
42 | ##### Synchronized Browser Tools:
43 |
44 | * [Browsersync](http://www.browsersync.io/)
45 |
46 | ##### Browser Coding Tools to Determine If X Browser Supports X:
47 |
48 | * [ES Feature Tests](https://featuretests.io/)
49 | * [Feature.js](http://featurejs.com/)
50 | * [Modernizr](https://modernizr.com/)
51 |
52 | ##### Broad Browser Polyfills/Shims:
53 |
54 | * [console-polyfill](https://github.com/paulmillr/console-polyfill)
55 | * [HTML5 Cross Browser Polyfills](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills)
56 | * [socket.io](http://socket.io/)
57 | * [SockJS](https://github.com/sockjs/sockjs-client)
58 | * [webcomponents.js](https://github.com/WebComponents/webcomponentsjs)
59 | * [webshim](https://afarkas.github.io/webshim/demos/)
60 |
61 | ##### Browser Hosted Testing/Automation:
62 |
63 | * [Browserling](https://www.browserling.com/) [$]
64 | * [BrowserStack](https://www.browserstack.com) [$]
65 | * [CrossBrowserTesting.com](http://crossbrowsertesting.com/) [$]
66 | * [Sauce Labs](https://saucelabs.com/) [$]
67 | * [Selenium](http://www.seleniumhq.org/)
68 |
69 | ##### Headless Browsers:
70 |
71 | * [PhantomJS](http://phantomjs.org/)
72 | * [slimerjs](http://slimerjs.org/)
73 | * [TrifleJS](http://triflejs.org/)
74 |
75 | ##### Headless Browser Automation:
76 |
77 | Used for functional testing and monkey testing.
78 |
79 | * [CasperJS](http://casperjs.org/)
80 | * [gremlins.js](https://github.com/marmelab/gremlins.js)
81 | * [Nightmare](https://github.com/segmentio/nightmare)
82 | * [NightwatchJS](http://nightwatchjs.org/)
83 |
84 | ##### Browser Hacks:
85 |
86 | * [browserhacks.com](http://browserhacks.com/)
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
--------------------------------------------------------------------------------
/tools/charting.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Data Visualization (e.g., Charts) Tools
6 |
7 | ##### JS Libraries:
8 |
9 | * [d3](http://d3js.org/)
10 | * [sigmajs](http://sigmajs.org/)
11 |
12 | ##### Widgets & Components:
13 |
14 | * [amCharts](http://www.amcharts.com/) [$]
15 | * [AnyChart](http://www.anychart.com/) [Non-commercial free to $]
16 | * [C3.js](http://c3js.org/)
17 | * [Chartist-jsj](https://github.com/gionkunz/chartist-js)
18 | * [Chart.js](http://www.chartjs.org/)
19 | * [Epoch](https://github.com/epochjs/epoch)
20 | * [FusionCharts](http://www.fusioncharts.com/) [$]
21 | * [Google Charts](https://developers.google.com/chart/interactive/docs/)
22 | * [Highcharts](http://www.highcharts.com/) [Non-commercial free to $]
23 | * [ZingChart](http://www.zingchart.com/) [free to $]
24 |
25 | ##### Services:
26 |
27 | * [ChartBlocks](http://www.chartblocks.com/) [free to $]
28 | * [Datawrapper](https://datawrapper.de/)
29 | * [infogr.am](https://infogr.am) [free to $]
30 | * [plotly](https://plot.ly/) [free to $]
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
--------------------------------------------------------------------------------
/tools/cms.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Content Management Hosted/API Tools
6 |
7 | ##### API CMS (i.e., Content Delivery CMS) Tools:
8 |
9 | * [Contentful](https://www.contentful.com/) [$]
10 | * [Cosmic JS](https://cosmicjs.com/) [free to $]
11 | * [prismic.io](https://prismic.io/) [free to $]
12 |
13 | ##### Hosted CMS Tools:
14 |
15 | * [Cushy CMS](https://www.cushycms.com) [free to $]
16 | * [LightCMS](https://www.lightcms.com) [$]
17 | * [Page Lime](http://www.pagelime.com/) [$]
18 | * [Surreal CMS](http://www.surrealcms.com/) [$]
19 |
20 | ##### Static CMS Tools:
21 |
22 | * [webhook.com](http://www.webhook.com/)
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
--------------------------------------------------------------------------------
/tools/code-editor.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Learn Code Editors
6 |
7 | > A source code editor is a text editor program designed specifically for editing source code of computer programs by programmers. It may be a standalone application or it may be built into an integrated development environment (IDE) or web browser. Source code editors are the most fundamental programming tool, as the fundamental job of programmers is to write and edit source code.
8 |
9 | >— [Wikipedia](https://en.wikipedia.org/wiki/Source_code_editor)
10 |
11 | Front-end code can minimally be edited with a simple text editing application like Notepad or TextEdit. But, most front-end practitioners use a code editor specifically design for editing a programming language.
12 |
13 | Code editors come in all sorts of types and size, so to speak. Selecting one is a rather subjective engagement. Choose one, learn it inside and out, then get on to learning HTML, CSS, DOM, and JavaScript.
14 |
15 | However, I do strongly believe, minimally, a code editor should have the following qualities (by default or by way of plugins):
16 |
17 | 1. Good documentation on how to use the editor
18 | 2. Report (i.e., hinting/linting/errors) on the code quality of HTML, CSS, and JavaScript.
19 | 3. Offer syntax highlighting for HTML, CSS, and JavaScript.
20 | 4. Offer code completion for HTML, CSS, and JavaScript.
21 | 5. Be customizable by way of a plug-in architecture
22 | 6. Have available a large repository of third-party/community plug-ins that can be used to customize the editor to your liking
23 | 7. Be small, simple, and not coupled to the code (i.e., not required to edit the code)
24 |
25 | I personally use and recommend [Sublime Text](http://www.sublimetext.com/) with the following plug-ins.
26 |
27 | * [AutoFileName](https://packagecontrol.io/packages/AutoFileName)
28 | * [BracketHighlighter](https://packagecontrol.io/packages/BracketHighlighter)
29 | * [Color Highlighter](https://packagecontrol.io/packages/Color%20Highlighter)
30 | * [CSS3](https://packagecontrol.io/packages/CSS3)
31 | * [HTMLAttributes](https://packagecontrol.io/packages/HTMLAttributes)
32 | * [HTML-CSS-JS Prettify](https://packagecontrol.io/packages/HTML-CSS-JS%20Prettify)
33 | * [Package Control](https://packagecontrol.io/packages/Package%20Control)
34 | * [SideBarEnhancements](https://packagecontrol.io/packages/SideBarEnhancements)
35 | * [StringEncode](https://packagecontrol.io/packages/StringEncode)
36 | * [SublimeLinter](https://packagecontrol.io/packages/SublimeLinter)
37 | * [SublimeLinter-json](https://packagecontrol.io/packages/SublimeLinter-json)
38 | * [SublimeLinter-jshint](https://packagecontrol.io/packages/SublimeLinter-jshint)
39 | * [SublimeLinter-html-tidy](https://packagecontrol.io/packages/SublimeLinter-html-tidy)
40 | * [Terminal](https://packagecontrol.io/packages/Terminal)
41 |
42 | Here are some resources for learning Sublime:
43 |
44 | * [Perfect Workflow in Sublime Text 2](https://code.tutsplus.com/courses/perfect-workflow-in-sublime-text-2) [watch][requires login, but free]
45 | * [Sublime Productivity](https://leanpub.com/sublime-productivity) [read][$]
46 | * [Sublime Text 3 From Scratch](http://www.pluralsight.com/courses/sublime-text-3-from-scratch) [watch][$]
47 | * [Sublime Text Power User Book](https://sublimetextbook.com/) [read + watch][$]
48 |
49 | ##### Code Editors:
50 |
51 | * [Atom](https://atom.io/)
52 | * [Brackets](http://brackets.io/)
53 | * [Sublime Text](http://www.sublimetext.com/) [$]
54 | * [WebStorm](https://www.jetbrains.com/webstorm/whatsnew/) [$]
55 | * [Visual Studio Code](https://code.visualstudio.com/)
56 |
57 | ##### Online Code Editors:
58 |
59 | * [Cloud9](https://c9.io) [free to $]
60 | * [Codeanywhere](https://codeanywhere.com) [free to $]
61 | * [Koding](https://koding.com) [free to $]
62 |
63 | ##### Sharable/Runnable Code Editors:
64 |
65 | Used to share limited amounts of immediately runnable code. Not a true code editor but a tool that can be used to small amounts of immediately runnable code in a web browser.
66 |
67 | * [CodePen](http://codepen.io/) [free to $]
68 | * [es6fiddle.net](http://www.es6fiddle.net/)
69 | * [jsbin.com](http://jsbin.com/) [free to $]
70 | * [jsfiddle.net](http://jsfiddle.net/)
71 | * [liveweave.com](http://liveweave.com/)
72 | * [Plunker](http://plnkr.co/)
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
--------------------------------------------------------------------------------
/tools/comm.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Collaboration & Communication Tools
6 |
7 | * [Google Hangouts](https://hangouts.google.com/)
8 | * [Skype](http://www.skype.com/) [free to $]
9 | * [Slack](https://slack.com/) & [screenhero](https://screenhero.com/) [free to $]
10 |
11 | ##### Code/GitHub Collaboration & Communication:
12 |
13 | * [Gitter](https://gitter.im) [free to $]
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/tools/css.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## CSS Tools
6 |
7 | ##### Desktop & Mobile CSS Frameworks:
8 |
9 | * [Base](http://getbase.org/)
10 | * [Bootstrap](http://getbootstrap.com/)
11 | * [Concise](http://concisecss.com/)
12 | * [Foundation](http://foundation.zurb.com/)
13 | * [Material Design Lite (MDL)](http://www.getmdl.io/index.html)
14 | * [Materialize](http://materializecss.com/)
15 | * [Metro UI](http://metroui.org.ua/)
16 | * [Pure.css](http://purecss.io/)
17 | * [Semantic UI](http://semantic-ui.com/)
18 |
19 | ##### Mobile Only CSS Frameworks:
20 |
21 | * [Ratchet](http://goratchet.com/)
22 |
23 | ##### CSS Reset:
24 |
25 | > A CSS Reset (or “Reset CSS”) is a short, often compressed (minified) set of CSS rules that resets the styling of all HTML elements to a consistent baseline.
26 |
27 | >— [cssreset.com](http://cssreset.com/what-is-a-css-reset/)
28 |
29 | * [Eric Meyer's “Reset CSS” 2.0](http://meyerweb.com/eric/tools/css/reset/)
30 | * [Normalize](https://necolas.github.io/normalize.css/)
31 |
32 | ##### Transpiling:
33 |
34 | * [pleeease.io](http://pleeease.io/)
35 | * [PostCSS](https://github.com/postcss/postcss) & [cssnext](http://cssnext.io/)
36 | * [rework](https://github.com/reworkcss/rework) & [myth](http://www.myth.io/)
37 | * [Sass/SCSS](http://sass-lang.com/)
38 | * [Stylus](https://github.com/stylus/stylus)
39 |
40 | ##### References:
41 |
42 | * [css3test.com](http://css3test.com/)
43 | * [css3clickchart.com](http://css3clickchart.com/)
44 | * [css4-selectors.com](http://css4-selectors.com/)
45 | * [CSS TRIGGERS...A GAME OF LAYOUT, PAINT, AND COMPOSITE](http://csstriggers.com/)
46 | * [cssvalues.com](http://cssvalues.com/)
47 | * [MDN CSS Reference](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference)
48 | * [OverAPI CSS cheatsheet](http://overapi.com/css/)
49 |
50 | ##### Linting/Hinting:
51 |
52 | * [CSS Lint](http://csslint.net/)
53 | * [stylelint](http://stylelint.io/)
54 |
55 | ##### Code Formatter/Beautifier:
56 |
57 | * [CSScomb](https://github.com/csscomb/csscomb.js)
58 | * [CSSfmt](https://github.com/morishitter/cssfmt)
59 |
60 | ##### Optimizer:
61 |
62 | * [clear-css](https://github.com/jakubpawlowicz/clean-css)
63 | * [cssnano](http://cssnano.co/)
64 | * [CSSO](http://css.github.io/csso/)
65 |
66 | ##### Online Creation/Generation/Experimentation Tools:
67 |
68 | * [CSS Arrow Please](http://cssarrowplease.com/)
69 | * [CSS Matic](http://www.cssmatic.com/)
70 | * [Enjoy CSS](http://enjoycss.com/)
71 | * [Flexbox Playground](https://scotch.io/demos/visual-guide-to-css3-flexbox-flexbox-playground)
72 | * [flexplorer](http://bennettfeely.com/flexplorer/)
73 | * [patternify.com](http://patternify.com)
74 | * [patternizer.com](http://patternizer.com/)
75 | * [Ultimate CSS Gradient Generator](http://www.colorzilla.com/gradient-editor/)
76 |
77 | ##### Architecting CSS:
78 |
79 | * [Atomic Design](http://atomicdesign.bradfrost.com/) [read]
80 | * [OOCSS](http://oocss.org/) [read]
81 | * [SMACSS](https://smacss.com/) [read][$]
82 |
83 | ##### Authoring Conventions:
84 |
85 | * [CSS code guide](http://codeguide.co/#css) [read]
86 | * [cssguidelin.es](http://cssguidelin.es/) [read]
87 | * [Google HTML/CSS Style Guide](http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml#General_Formatting)
88 | * [Idiomatic CSS](https://github.com/necolas/idiomatic-css) [read]
89 | * [MaintainableCSS](http://maintainablecss.com/) [read]
90 |
91 | ##### Trending CSS Repositories on GitHub This Month:
92 |
93 | [https://github.com/trending?l=css&since=monthly](https://github.com/trending?l=css&since=monthly)
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
--------------------------------------------------------------------------------
/tools/db.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Front-End Data Storage Tools
6 |
7 | * [AlaSQL](http://alasql.org/)
8 | * [Dexie.js](http://www.dexie.org/)
9 | * [ForerunnerDB](http://forerunnerdb.com/)
10 | * [localForage](http://mozilla.github.io/localForage/)
11 | * [LokiJS](http://lokijs.org/#/)
12 | * [Lovefield](https://google.github.io/lovefield)
13 | * [Pouchdb](http://pouchdb.com/)
14 | * [YDN-DB](http://dev.yathit.com/ydn-db/index.html)
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/tools/deploy.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Deployment Tools
6 |
7 | * [Bamboo](https://www.atlassian.com/software/bamboo/) [$]
8 | * [Codeship](https://codeship.com/) [free to $]
9 | * [FTPLOY](http://ftploy.com/) [free to $]
10 | * [Travis CI](http://docs.travis-ci.com/) [free to $]
11 | * [Springloops](http://www.springloops.io/) [free to $]
12 | * [Surge](https://surge.sh/)
13 | * [Sync Ninja](http://www.syncninja.com/)
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
--------------------------------------------------------------------------------
/tools/diagram.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Diagramming Tools
6 |
7 | * [draw.io](https://www.draw.io/) [free to $]
8 | * [Cacoo](https://cacoo.com) [free to $]
9 | * [gliffy](https://www.gliffy.com/products/online/) [free to $]
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/tools/dom.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## DOM Tools
6 |
7 | ##### DOM Libraries/Frameworks:
8 |
9 | * [clipboard.js](http://zenorocha.github.io/clipboard.js/)
10 | * [jQuery](http://jquery.com/)
11 | * [Keypress](http://dmauro.github.io/Keypress/)
12 | * [Tether](http://tether.io/docs/welcome/)
13 | * [Zepto](http://zeptojs.com/)
14 |
15 | ##### DOM Performance Tools:
16 |
17 | * [DOM Monster](http://mir.aculo.us/dom-monster/)
18 |
19 | ##### References:
20 |
21 | * [Events](https://html.spec.whatwg.org/#events-2)
22 | * [DOM Browser Support](http://www.webbrowsercompatibility.com/dom/desktop/)
23 | * [DOM Events Browser Support](http://www.webbrowsercompatibility.com/dom-events/desktop/)
24 | * [HTML Interfaces Browser Support](http://www.webbrowsercompatibility.com/html-interfaces/desktop/)
25 | * [MDN Document Object Model (DOM)](https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model)
26 |
27 | ##### DOM Polyfills/Shims:
28 |
29 | * [dom-shims](https://github.com/necolas/dom-shims)
30 | * [Pointer Events Polyfill: a unified event system for the web platform](https://github.com/jquery/PEP)
31 |
32 | ##### Virtual DOM:
33 |
34 | * [jsdom](https://github.com/tmpvar/jsdom)
35 | * [virtual-dom](https://github.com/Matt-Esch/virtual-dom)
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
--------------------------------------------------------------------------------
/tools/error.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## JavaScript Error Reporting/Monitoring
6 |
7 | * [errorception](https://errorception.com/) [$]
8 | * [Raygun](https://raygun.io) [$]
9 | * [Sentry](https://getsentry.com/welcome/) [free to $]
10 | * [TrackJS](https://trackjs.com/) [$]
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/tools/fonts.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Font Tools
6 |
7 | ##### Free Web Fonts:
8 |
9 | * [fonts.com](http://www.fonts.com/) [free to $]
10 | * [Google Fonts](http://fortawesome.github.io/Font-Awesome/)
11 | * [TypeKit](https://typekit.com) [free to $]
12 |
13 | ##### Icon Fonts:
14 |
15 | * [Devicons](http://vorillaz.github.io/devicons/#/main)
16 | * [Font Awesome](http://fortawesome.github.io/Font-Awesome/)
17 | * [Fontello](http://fontello.com/)
18 | * [GitHub Octicons](https://octicons.github.com/)
19 | * [ionicons](http://ionicons.com/)
20 |
21 | ##### JS Font Tools:
22 |
23 | * [FlowType.js](http://simplefocus.com/flowtype/)
24 | * [localFont](https://github.com/jaicab/localFont)
25 | * [Web Font Loader](https://github.com/typekit/webfontloader)
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/tools/general-tools.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## General Front-End Development Tools
6 |
7 | ##### Development Tools:
8 |
9 | * [Browsersync](http://www.browsersync.io/)
10 | * [CodeKit](http://incident57.com/codekit/)
11 | * [ish. 2.0.](https://github.com/bradfrost/ish.)
12 | * [placehold.it](http://placehold.it/)
13 | * [Prepros](https://prepros.io/)
14 | * [screensiz.es](http://screensiz.es/)
15 | * [Wraith](http://bbc-news.github.io/wraith/index.html)
16 |
17 | ##### Online Code Editors:
18 |
19 | * [CodePen](http://codepen.io/)
20 | * [es6fiddle.net](http://www.es6fiddle.net/)
21 | * [JS Bin](http://jsbin.com/)
22 | * [JSFiddle](http://jsfiddle.net/)
23 | * [Liveweave](http://liveweave.com/)
24 | * [Plunker](http://plnkr.co/)
25 |
26 | ##### Tools for Finding Tools:
27 |
28 | * [built with](http://builtwith.com/)
29 | * [javascripting.com](http://www.javascripting.com)
30 | * [microjs.com](http://microjs.com)
31 | * [stackshare.io](http://stackshare.io/)
32 | * [stylesheets.co](https://stylesheets.co/)
33 | * [The Toolbox](http://thetoolbox.cc/)
34 | * [Unheap](http://www.unheap.com/)
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/tools/graphics.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Graphics (e.g., SVG, canvas, webgl) Tools
6 |
7 | ##### General:
8 |
9 | * [Fabric.js](http://fabricjs.com/)
10 | * [Two.js](http://jonobr1.github.io/two.js/#introduction)
11 |
12 | ##### Canvas:
13 |
14 | * [EaselJS](https://github.com/CreateJS/EaselJS)
15 | * [Paper.js](http://paperjs.org/)
16 |
17 | ##### SVG:
18 |
19 | * [d3](http://d3js.org/)
20 | * [GraphicsJS](http://www.graphicsjs.org/)
21 | * [Raphaël](http://raphaeljs.com/)
22 | * [Snap.svg](http://snapsvg.io/)
23 | * [svg.js](http://svgjs.com/)
24 |
25 | ##### WebGL:
26 |
27 | * [pixi.js](https://github.com/pixijs/pixi.js)
28 | * [three.js](http://threejs.org/)
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/tools/hosting.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Web/Cloud/Static Hosting Tools
6 |
7 | * [AWS](https://aws.amazon.com/websites/) [$]
8 | * [DigitalOcean](https://digitalocean.com) [$]
9 | * [DIVSHOT](https://divshot.com) [free to $]
10 | * [Heroku](https://heroku.com) [free to $]
11 | * [Modulus](https://modulus.io/) [$]
12 | * [netlify](https://www.netlify.com) [free to $]
13 | * [Surge](https://surge.sh/) [free to $]
14 |
--------------------------------------------------------------------------------
/tools/html.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## HTML Tools
6 |
7 | ##### HTML Templates/Boilerplates/Starter Kits:
8 |
9 | * [dCodes](http://www.dcodes.net/2/docs/index.html)
10 | * [Email-Boilerplate](https://github.com/seanpowell/Email-Boilerplate)
11 | * [HTML5 Boilerplate](https://html5boilerplate.com/)
12 | * [HTML5 Bones](http://html5bones.com/)
13 | * [Mobile boilerplate](https://html5boilerplate.com/mobile/)
14 | * [Pears](http://pea.rs/)
15 | * [Web Starter Kit Boilerplate & Tooling for Multi-Device Development](https://developers.google.com/web/tools/starter-kit)
16 |
17 | ##### HTML Polyfill:
18 |
19 | * [html5shiv](https://github.com/aFarkas/html5shiv)
20 |
21 | ##### Transpiling:
22 |
23 | * [HAML](http://haml.info/)
24 | * [jade](http://jade-lang.com/)
25 | * [Markdown](http://daringfireball.net/projects/markdown/)
26 |
27 | ##### References:
28 |
29 | * [Element attributes](https://html.spec.whatwg.org/multipage/indices.html#attributes-3)
30 | * [Elements](https://html.spec.whatwg.org/multipage/indices.html#elements-3)
31 | * [HTML Arrows](http://htmlarrows.com/)
32 | * [HTML Entity Lookup](http://entity-lookup.leftlogic.com/)
33 | * [HTML Interfaces Browser Support ](http://www.webbrowsercompatibility.com/html-interfaces/desktop/)
34 | * [HTMLelement.info](http://htmlelement.info/)
35 |
36 | ##### Linting/Hinting:
37 |
38 | * [html5-lint](https://github.com/mozilla/html5-lint)
39 | * [HTMLHint](http://htmlhint.com/)
40 | * [html-inspector](https://github.com/philipwalton/html-inspector)
41 |
42 | ##### Optimizer:
43 |
44 | * [HTML Minifier](http://kangax.github.io/html-minifier/)
45 |
46 | ##### Online Creation/Generation/Experimentation Tools:
47 |
48 | * [tablesgenerator.com](http://www.tablesgenerator.com/)
49 |
50 | ##### Authoring Conventions:
51 |
52 | * [HTML Code Guide](http://codeguide.co/#html)
53 | * [Principles of Writing Consistent, Idiomatic HTML](https://github.com/necolas/idiomatic-html)
54 |
55 | ##### Workflow:
56 |
57 | * [Emmet](http://emmet.io/)
58 |
59 | ##### Trending HTML Repositories on GitHub This Month:
60 |
61 | [https://github.com/trending?l=html&since=monthly](https://github.com/trending?l=html&since=monthly)
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
--------------------------------------------------------------------------------
/tools/http.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## HTTP/Network Tools
6 |
7 | * [Charles](http://www.charlesproxy.com/) [$]
8 | * [Chrome DevTools Network Panel](https://developers.google.com/web/tools/chrome-devtools/profile/network-performance/resource-loading)
9 | * [Fiddler](http://www.telerik.com/fiddler)
10 | * [Postman](https://www.getpostman.com/)
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/tools/js.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## JavaScript Tools
6 |
7 | ##### JS Utilities:
8 |
9 | * [accounting.js](http://openexchangerates.github.io/accounting.js/)
10 | * [async](https://github.com/caolan/async)
11 | * [Chance](http://chancejs.com/)
12 | * [format.js](http://formatjs.io/)
13 | * [is.js](http://arasatasaygin.github.io/is.js/)
14 | * [lodash](https://lodash.com/)
15 | * [Math.js](http://mathjs.org/)
16 | * [Moment.js](http://momentjs.com/)
17 | * [Numeral.js](http://numeraljs.com/)
18 | * [string.js](http://stringjs.com/)
19 | * [underscore.js](http://underscorejs.org/)
20 | * [wait](https://github.com/elving/wait)
21 | * [xregexp.com](http://xregexp.com/)
22 |
23 | ##### Transpiling (ESX to ESX):
24 |
25 | * [Babel](https://babeljs.io/)
26 |
27 | ##### JavaScript Compatibility Checker:
28 |
29 | * [jscc.info/](http://jscc.info/)
30 |
31 | ##### Linting/Hinting:
32 |
33 | * [eshint](http://eslint.org/)
34 | * [jshint](http://jshint.com/)
35 | * [JSLint](http://www.jslint.com/)
36 | - [jslinterrors.com](http://jslinterrors.com/)
37 |
38 | ##### Unit Testing:
39 |
40 | * [Jasmine](http://jasmine.github.io/)
41 | - [Jest](http://facebook.github.io/jest/)
42 | * [Mocha](http://mochajs.org/)
43 | * [QUnit](http://qunitjs.com/)
44 |
45 | ##### Testing Assertions for Unit Testing:
46 |
47 | * [Chai](http://chaijs.com/)
48 | * [expect.js](https://github.com/Automattic/expect.js)
49 | * [should.js](http://shouldjs.github.io/)
50 |
51 | ##### Test Spies, Stubs, and Mocks for Unit Testing:
52 |
53 | * [sinon.js](http://sinonjs.org/)
54 |
55 | ##### Code Style Linter:
56 |
57 | * [JSCS](http://jscs.info/)
58 |
59 | ##### Code Formater/Beautifier:
60 |
61 | * [esformatter](https://github.com/millermedeiros/esformatter#esformatterformatstr-optsstring)
62 | * [js-beautify](http://jsbeautifier.org/)
63 | * [jsfmt](http://rdio.github.io/jsfmt/)
64 |
65 | ##### Performance Testing:
66 |
67 | * [benchmark.js](http://benchmarkjs.com/)
68 | * [jsperf](http://jsperf.com/)
69 |
70 | ##### Visualization, Static Analysis, Complexity, Coverage Tools:
71 |
72 | * [Blanket.js](http://blanketjs.org/)
73 | * [Coveralls](https://coveralls.io/) [$]
74 | * [escomplex](https://github.com/jared-stilwell/escomplex)
75 | * [Esprima](http://esprima.org/)
76 | * [jscomplexity.org](http://jscomplexity.org/)
77 | * [istanbul](https://github.com/gotwarlost/istanbul)
78 | * [Plato](https://github.com/es-analysis/plato)
79 |
80 | ##### Optimizer:
81 |
82 | * [UglifyJS 2](https://github.com/mishoo/UglifyJS2)
83 |
84 | ##### Obfuscate:
85 |
86 | * [Javascript Obfuscator](http://www.javascriptobfuscator.com/) [free to $]
87 | * [JScrambler](https://jscrambler.com/) [$]
88 |
89 | ##### Sharable/Runnable Code Editors:
90 |
91 | * [es6fiddle.net](http://www.es6fiddle.net/)
92 | * [jsbin.com](http://jsbin.com/) [free to $]
93 | * [jsfiddle.net](http://jsfiddle.net/)
94 |
95 | ##### Online Regular Expression Editors/Visual Tools:
96 |
97 | * [debuggex](https://www.debuggex.com)
98 | * [regex101](https://regex101.com/)
99 | * [regexper](http://regexper.com/)
100 | * [RegExr](http://regexr.com/)
101 |
102 | ##### Authoring Conventions:
103 |
104 | * [Airbnb JavaScript Style Guide](http://airbnb.io/javascript/)
105 | * [Khan JavaScript Style Guide](https://github.com/Khan/style-guides/blob/master/style/javascript.md)
106 | * [Principles of Writing Consistent, Idiomatic JavaScript](https://github.com/rwaldron/idiomatic.js)
107 |
108 | ##### Trending JS Repositories on GitHub This Month:
109 |
110 | [https://github.com/trending?l=javascript&since=monthly](https://github.com/trending?l=javascript&since=monthly)
111 |
112 | ##### Most Depended upon Packages on NPM:
113 |
114 | [https://www.npmjs.com/browse/depended](https://www.npmjs.com/browse/depended)
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
--------------------------------------------------------------------------------
/tools/json.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## JSON Tools
6 |
7 | ##### Online Editors:
8 |
9 | * [JSONmate](http://jsonmate.com/)
10 |
11 | ##### Query Tools:
12 |
13 | * [DefiantJS](http://www.defiantjs.com/)
14 | * [JSON Mask](https://github.com/nemtsov/json-mask)
15 | * [ObjectPath](http://objectpath.org/)
16 |
17 | ##### Generating Mock JSON Tools:
18 |
19 | * [JSON Generator](http://www.json-generator.com/)
20 | * [Mockaroo](https://www.mockaroo.com/)
21 |
22 | ##### Online JSON Mocking API Tools:
23 |
24 | * [FillText.com](http://www.filltext.com/)
25 | * [JSONPlaceholder](http://jsonplaceholder.typicode.com/)
26 | * [mockable.io](https://www.mockable.io/)
27 | * [Mocky](http://www.mocky.io/)
28 |
29 | ##### Local JSON Mocking API Tools:
30 |
31 | * [json-server](https://github.com/typicode/json-server)
32 |
33 | ##### JSON Specifications/Schemas:
34 |
35 | * [json-schema.org](http://json-schema.org/) & [jsonschema.net](http://jsonschema.net/)
36 | * [{json:api}](http://jsonapi.org/)
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
--------------------------------------------------------------------------------
/tools/loaders.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Module/Package Loading Tools
6 |
7 | * [Browserify](http://browserify.org/)
8 | * [Rollup](http://rollupjs.org/)
9 | * [SystemJS](https://github.com/systemjs/systemjs)
10 | * [webpack](https://webpack.github.io/)
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/tools/offline.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Offline Tools
6 |
7 | * [Hoodie](http://hood.ie/)
8 | * [Offline.js](http://github.hubspot.com/offline/docs/welcome/)
9 | * [PouchDB](http://pouchdb.com/)
10 | * [upup](https://www.talater.com/upup/)
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/tools/perf.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Performance Tools
6 |
7 | ##### Reporting:
8 |
9 | * [Chrome Devtools Timeline](https://developers.google.com/web/tools/profile-performance/evaluate-performance/timeline-tool?hl=en)
10 | * [GTmetrix](https://gtmetrix.com/)
11 | * [sitespeed.io](https://www.sitespeed.io)
12 | * [Speed Curve](https://speedcurve.com/) [$]
13 | * [Web Page Test](http://www.webpagetest.org/)
14 | * [WEIGHTOF.IT](http://weightof.it/category/application-frameworks)
15 |
16 | ##### JS Tools:
17 |
18 | * [imagemin](https://github.com/imagemin/imagemin)
19 | * [ImageOptim-CLI](http://jamiemason.github.io/ImageOptim-CLI/)
20 |
21 | ##### Budgeting:
22 |
23 | * [performancebudget.io](http://www.performancebudget.io/)
24 |
25 | ##### References/Docs:
26 |
27 | * [Jank Free](http://jankfree.org/)
28 | * [Performance of ES6 features relative to the ES5](https://kpdecker.github.io/six-speed/)
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
--------------------------------------------------------------------------------
/tools/project-hosting.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Project Management & Code Hosting Tools
6 |
7 | * [Assembla](https://www.assembla.com) [free to $]
8 | * [Bitbucket](https://bitbucket.org) [free to $]
9 | * [Codebase](https://www.codebasehq.com/) [$]
10 | * [Github](https://github.com/) [free to $]
11 | * [Unfuddle](https://unfuddle.com/) [$]
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/tools/proto.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Prototyping & Wireframing Tools
6 |
7 | ##### Creating:
8 |
9 | * [Balsamiq Mockups](https://balsamiq.com) [$]
10 | * [Justinmind](http://www.justinmind.com/) [$]
11 | * [UXPin](http://www.uxpin.com/) [free to $]
12 |
13 | ##### Collaboration / Presenting:
14 |
15 | * [InVision](http://www.invisionapp.com/) [free to $]
16 | * [Conceptboard](https://conceptboard.com/) [free to $]
17 | * [myBalsamiq](https://www.mybalsamiq.com/) [$]
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/tools/repo.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Module/Package Pepository Tools
6 |
7 | * [Bower](http://bower.io/)
8 | * [jspm.io](http://jspm.io/)
9 | * [NPM](https://www.npmjs.com/)
10 | * [spmjs](http://spmjs.io/)
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/tools/scaffolding.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Scaffolding Tools
6 |
7 | Client side Scaffolding is concerned with generating a starter template for the application as a whole, rather than [generating code to access a database](https://en.wikipedia.org/wiki/Scaffold_%28programming%29).
8 |
9 | * [Slush](http://slushjs.github.io/#/)
10 | * [Yeoman](http://yeoman.io/)
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/tools/security.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Security Tools
6 |
7 | ##### Coding Tool:
8 |
9 | * [DOMPurify](https://github.com/cure53/DOMPurify)
10 | * [XSS](http://jsxss.com/en/index.html)
11 |
12 | ##### References:
13 |
14 | * [HTML5 Security Cheatsheet](https://html5sec.org/)
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/tools/seo.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## SEO Tools
6 |
7 | * [Keyword Tool](http://keywordtool.io/)
8 | * [Google Webmasters Search Console](https://www.google.com/webmasters/)
9 | * [Varvy SEO tool](https://varvy.com/tools/)
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/tools/static.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Static Site Generators Tools
6 |
7 | ##### JS Site Generators:
8 |
9 | * [Harp](http://harpjs.com/)
10 | * [Metalsmith](http://www.metalsmith.io/)
11 |
12 | ##### JS Blog Site Generators:
13 |
14 | * [Hexo](https://hexo.io/)
15 | * [HubPress](http://hubpress.io/)
16 |
17 | ##### Site Generator Listings:
18 |
19 | * [staticgen.com](https://www.staticgen.com/)
20 | * [staticsitegenerators.net](https://staticsitegenerators.net/)
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/tools/svg.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## SVG Tools
6 |
7 | ##### Optimizing:
8 |
9 | * [Clean Multiple Gradient Stops](http://codepen.io/jakealbaugh/pen/OVrQXY)
10 | * [Peter Collingridge's SVG Optimiser](http://petercollingridge.appspot.com/svg-optimiser)
11 | * [Scour SVG Scrubber](http://www.codedread.com/scour/)
12 | * [SVG Cleaner](https://launchpad.net/svg-cleaner)
13 | * [SVGO](https://github.com/svg/svgo)
14 | * [SVGO-GUI](https://github.com/svg/svgo-gui)
15 | * [SVGOMG](https://jakearchibald.github.io/svgomg/)
16 |
17 | ##### SVG Editors:
18 |
19 | * [DrawSVG](http://www.drawsvg.org/)
20 | * [Illustrator](http://www.adobe.com/products/illustrator.html)
21 | * [Inkscape](https://inkscape.org/en/)
22 | * [Sketch](https://www.sketchapp.com/)
23 |
24 | ##### Sprite Creation:
25 |
26 | * [Fontastic](http://fontastic.me/)
27 | * [Grunticon](http://www.grunticon.com/)
28 | * [Icomoon](https://icomoon.io/)
29 |
30 | ##### Bug Trackers:
31 |
32 | * [SVG Edit](https://code.google.com/p/svg-edit/wiki/BrowserBugs)
33 | * [SVG Weirdness](https://github.com/emilbjorklund/svg-weirdness)
--------------------------------------------------------------------------------
/tools/task.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Tasking (aka Build) Tools
6 |
7 | ##### Tasking/Build Tools:
8 |
9 | * [Grunt](http://gruntjs.com/)
10 | * [Gulp](http://gulpjs.com/)
11 |
12 | ##### Tasking/Build and More Tools:
13 |
14 | * [Brunch](http://brunch.io/)
15 | * [Mimosa](http://mimosa.io/)
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/tools/templates.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Templating Tools
6 |
7 | ##### Just Templating:
8 |
9 | * [doT.js](http://olado.github.io/doT/)
10 | * [Handlebars](http://handlebarsjs.com/)
11 | - [htmlbars](https://github.com/tildeio/htmlbars)
12 | * [Hogan.js](http://twitter.github.io/hogan.js/)
13 | * [Mustache.js](https://github.com/janl/mustache.js)
14 | * [Nunjuncks](http://mozilla.github.io/nunjucks/)
15 | * [Transparency](http://leonidas.github.io/transparency/)
16 |
17 | ##### Templating and Reactive Data Binding:
18 |
19 | * [jquerymy.js](http://jquerymy.com/)
20 | * [knockout](http://knockoutjs.com/index.html)
21 | * [paperclip.js](http://paperclipjs.com/)
22 | * [ractive.js](http://www.ractivejs.org/)
23 | * [react.js](https://facebook.github.io/react/index.html)
24 | * [riot](http://riotjs.com/)
25 | * [Rivets.js](http://rivetsjs.com/)
26 | * [RxJS](https://github.com/Reactive-Extensions/RxJS)
27 | * [vue.js](http://vuejs.org/)
28 |
29 | ##### Templating to Virtual DOM:
30 |
31 | * [JSX](https://facebook.github.io/jsx/)
32 | * [t7](http://t7js.com/)
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
--------------------------------------------------------------------------------
/tools/testing.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Testing Framework Tools
6 |
7 | * [Intern](https://theintern.github.io/)
8 | * [Karma](http://karma-runner.github.io/0.8/index.html)
9 | * [NightWatch.js](http://nightwatchjs.org/)
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/tools/ui.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## UI Widgets & Components Tools
6 |
7 | ##### Desktop & Mobile:
8 |
9 | * [Bootstrap](http://getbootstrap.com/components/)
10 | * [Kendo UI](http://www.telerik.com/kendo-ui) [free to $]
11 | * [Material ui](http://material-ui.com/)
12 | * [Materialize](http://materializecss.com/)
13 | * [Metro UI](http://metroui.org.ua/)
14 | * [Office UI Fabric](http://dev.office.com/fabric)
15 | * [Polymer Paper Elements](https://elements.polymer-project.org/browse?package=paper-elements)
16 | * [Semantic UI](http://semantic-ui.com/)
17 | * [Webix](http://webix.com/) [$]
18 |
19 | ##### Desktop (NW.js and Electron):
20 |
21 | * [Photon](http://photonkit.com/)
22 | * [React UI Components for OS X El Capitan and Windows 10](http://gabrielbull.github.io/react-desktop/)
23 |
24 | ##### Mobile Focused:
25 |
26 | * [Framework7](http://www.idangero.us/framework7)
27 | * [Kendo UI Mobile](http://demos.telerik.com/kendo-ui/m/index)
28 | * [Mobile Angular UI](http://mobileangularui.com/)
29 | * [Ratchet](http://goratchet.com/)
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/tools/uptime.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## Site/App Monitoring Tools
6 |
7 | ##### Uptime:
8 |
9 | * [Pingdom](https://www.pingdom.com/) [free to $]
10 | * [Uptime Robot](https://uptimerobot.com/)
11 | * [Uptrends](https://www.uptrends.com/) [$]
12 |
13 | ##### General:
14 |
15 | * [New Relic](http://newrelic.com/)
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/what-is-a-FD.md:
--------------------------------------------------------------------------------
1 | # AVAILABLE NOW: [Front-End Developer Handbook 2017](https://frontendmasters.com/books/front-end-handbook/2017/)
2 |
3 | ***
4 |
5 | ## What Is a Front-End Developer?
6 |
7 | A front-end developer architects and develops websites and applications using web technologies (i.e., HTML, CSS, DOM, and JavaScript), which run on the [web platform](https://en.wikipedia.org/wiki/Open_Web_Platform) or act as compilation input for non-web platform environments (i.e., [NativeScript](https://www.nativescript.org/)).
8 |
9 | 
10 |
11 | Image source: https://www.upwork.com/hiring/development/front-end-developer/
12 |
13 | Typically, a person enters into the field of front-end development by learning to develop HTML, CSS, and JS code, which runs in a [web browser](https://en.wikipedia.org/wiki/Web_browser), [headless browser](https://en.wikipedia.org/wiki/Headless_browser), [WebView](http://developer.telerik.com/featured/what-is-a-webview/), or as compilation input for a native runtime environment. The four run times scenarios are explained below.
14 |
15 | A web browser is software used to retrieve, present, and traverse information on the WWW. Typically, browsers run on a desktop, laptop, tablet, or phone, but as of late a browser can be found on just about anything (i.e, on a fridge, in cars, etc.).
16 |
17 | The most common web browsers are:
18 |
19 | * [Chrome](http://www.google.com/chrome/)
20 | * [Internet Explorer](http://dev.modern.ie/)
21 | * [Firefox](https://www.mozilla.org/firefox/)
22 | * [Safari](http://www.apple.com/safari/)
23 |
24 | Headless browsers are a web browser without a graphical user interface that can be controlled from a command line interface for the purpose of web page automation (e.g., functional testing, scraping, unit testing, etc.). Think of headless browsers as a browser that you can run from the command line that can retrieve and traverse web pages.
25 |
26 | The most common headless browsers are:
27 |
28 | * [PhantomJS](http://phantomjs.org/)
29 | * [slimerjs](http://slimerjs.org/)
30 | * [trifleJS](http://triflejs.org/)
31 |
32 | [Webviews](http://developer.telerik.com/featured/what-is-a-webview/) are used by a native OS, in a native application, to run web pages. Think of a [webview](http://developer.telerik.com/featured/what-is-a-webview/) like an iframe or a single tab from a web browser that is embedded in a native application running on a device (e.g., [iOS](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIWebView_Class/), [android](http://developer.android.com/reference/android/webkit/WebView.html), [windows](https://msdn.microsoft.com/library/windows/apps/windows.ui.xaml.controls.webview.aspx)).
33 |
34 | The most common solutions for [webview](http://developer.telerik.com/featured/what-is-a-webview/) development are:
35 |
36 | * [Cordova](https://cordova.apache.org/) (typically for native phone/tablet apps)
37 | * [NW.js](https://github.com/nwjs/nw.js) (typically used for desktop apps)
38 | * [Electron](http://electron.atom.io/) (typically used for desktop apps)
39 |
40 | Eventually, what is learned from web browser development can be used by front-end developers to craft code for environments that are not fueled by a browser engine. As of late, development environments are being dreamed up that use web technologies (e.g., CSS and JavaScript), without web engines, to create truly native applications.
41 |
42 | Some examples of these environments are:
43 |
44 | * [NativeScript](https://www.nativescript.org/)
45 | * [React Native](https://facebook.github.io/react-native/)
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------