Transcript
Page 1: Chrome dev tools tips and tricks

Chrome DevToolsTips and Tricks

Adam BankinShutterstock NYCMarch 26th, 2014

Page 2: Chrome dev tools tips and tricks

Console tab

Page 3: Chrome dev tools tips and tricks

console.logvar obj = { a: 1, b: 2, c: 3}

console.log(obj);

Page 4: Chrome dev tools tips and tricks

console.warnvar obj = { a: 1, b: 2, c: 3}

console.warn(obj);

Page 5: Chrome dev tools tips and tricks

console.tracefunction firstFunc () { secondFunc()}

function secondFunc () { console.trace()}

firstFunc();

Page 6: Chrome dev tools tips and tricks

console.errortry { doStuff();} catch (e) { console.error("There has been an error, yo");}

Page 7: Chrome dev tools tips and tricks

console.tablevar data = [ {a: 1, b: 2, c: 3}, {a: 4, b: 8, c: 12}, {a: 16, b: 32, c: 48}];

console.table(data);

Page 8: Chrome dev tools tips and tricks

console.table [continued]console.table( document.querySelectorAll("#content img"), ["src", "width"]);

Page 9: Chrome dev tools tips and tricks

console.dir/dirconsole.log(document.querySelectorAll("#content img"));// String representation

console.dir(document.querySelectorAll("#content img"));// JavaScript representation

Page 10: Chrome dev tools tips and tricks

console.assertconsole.assert( document.querySelectorAll("#content img").length <= 3, "More than 3 images");

Page 11: Chrome dev tools tips and tricks

More console methodsconsole.group();console.time();console.profile();

https://developers.google.com/chrome-developer-tools/docs/console

Page 12: Chrome dev tools tips and tricks

Preserve logs

Page 13: Chrome dev tools tips and tricks

Sources tab

Page 14: Chrome dev tools tips and tricks

Debugger keywordvar body = document.body;

function doStuff (obj) { var win = window; var value = 9; debugger;}

function callDoStuff () { doStuff({a: 1, b: 2, c: 3});}

callDoStuff();

Page 15: Chrome dev tools tips and tricks

Breakpoint types

Standard breakpointConditional breakpointDOM/XHR/Event Listener breakpointsDisabled breakpointDeactivated breakpoint

Page 16: Chrome dev tools tips and tricks

Breakpoint steps

PlayStep OverStep InStep Out

Page 17: Chrome dev tools tips and tricks

Navigate by breakpoint

Click the text of the breakpoint to go to the corresponding line of code

Page 18: Chrome dev tools tips and tricks

Call stack

Navigate back through your code

Page 19: Chrome dev tools tips and tricks

Call stack [Async]function doStuff (obj) { var value = 9; debugger;}

function callDoStuff () { setTimeout(function () { doStuff({a: 1, b: 2, c: 3}); }, 300);}

callDoStuff();

Page 20: Chrome dev tools tips and tricks

Replay your code

Right-click the call stack and choose "Restart frame"

Page 21: Chrome dev tools tips and tricks

Editable code// Literals don't seem to workdoStuff({a: 1, b: 2, c: 3}); // talk1.js

// predefined values DOvar obj = {a: 1, b: 2, c: 3}; // talk2.jsdoStuff(obj);

Page 22: Chrome dev tools tips and tricks

(Mac) Keyboard shortcuts(Cmd + Option + i) Open DevTools(ESC) Open and close the console drawer(Shift + return) Enter a line return in the console(fn + F8) Step over(fn + F11) Step into(Shift + fn + F11) Step out(Cmd + [ or ]) Navigate between tabs

Page 23: Chrome dev tools tips and tricks

A LOT more hereWe've barely scratched the surface!

Chrome DevTools docsHTML5Rocks DevTools digestYouTube DevTools videos

Page 24: Chrome dev tools tips and tricks

[email protected]@adambankin

Did I mention we're hiring?!


Recommended