Skip to content

Latest commit

 

History

History

03-using-dev-tools

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Using dev tools

Exercise

  • Find debug tools for viewing IndexedDB and WebSQL databases across all the major web browsers and check our database has been created across all of them.

Chrome

To check that the database has been succesfully created open the application in the browser, open up Developer Tools and click on the Resources tab.

Screenshot of the IndexedDB in Chrome Dev Tools

Firefox

  • Download the IndexedDB browser,
  • Find your profile folder, cd ~/Library/Application\ Support/Firefox/Profiles/1yj54vgo.default/.
  • Create a symbolic link: ln -s ./storage/persistent/ ./indexedDB

Firefox IndexedDB Dev Tools

Safari

Safari is also a little different because it does not yet support IndexedDB in stable. You can however still verify that the polyfill has correctly set the database up in WebSQL.

Safari IndexedDB Dev Tools


← Back to opening a database | Continue to creating object stores