How is HTML5 WebStorage data physically stored?

Chrome uses SQLite for LocalStorage.

I confirmed this by going to AppData\Local\Google\Chrome\User Data\Default\Local Storage on my local PC and viewing the contents of a file. The files start with “SQLite format 3” when viewed via a text editor. You will need a SQLite database viewer to view the data.

Leave a Comment