Jack Richardson
Jack Richardson

Reputation:

Where is JavaScript's localstorage strings stored?

Where is localstorage strings stored on the operating system? Is it in Firefox's Profile folder?

Upvotes: 2

Views: 1576

Answers (2)

Eric Fortis
Eric Fortis

Reputation: 17350

The DOM storage data is stored in the webappsstore.sqlite file in the profile folder.

http://kb.mozillazine.org/Webappsstore.sqlite

http://kb.mozillazine.org/Profile_folder

Upvotes: 1

Rich
Rich

Reputation: 7204

Yes. In firefox it's in the webappsstore.sqlite file in the profile folder.

See: https://developer.mozilla.org/en/DOM/Storage#Storage_location_and_clearing_the_data

Upvotes: 1

Related Questions