Introduction to Dev Tools, v3
Note: If you're looking for Mastering Chrome Devtools, v2:
A web app for teaching people about Chrome DevTools. This is the website and course materials for the Introduction to Dev Tools, v3 on Frontend Masters.
Requirements
This app requires Node.js which can be downloaded here
How to use
git clone https://github.com/jkup/mastering-chrome-devtools.git
cd mastering-chrome-devtools
npm install
npm start
Then visit http://localhost:3000
If you'd like the app to automatically reload on changes
git clone https://github.com/jkup/mastering-chrome-devtools.git
cd mastering-chrome-devtools
npm install -g nodemon
npm install
nodemon server/server.js
Note: If you're looking for Mastering Chrome Devtools v2, run:
git clone https://github.com/jkup/mastering-chrome-devtools.git
cd mastering-chrome-devtools
git checkout v2
npm install
npm start