Skip to content
#

local-storage

LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies—another alternative if the data in question goes beyond key-value pairs is to use the IndexedDB.

localStorage data is specific to the protocol of the document. In particular, for a site loaded over HTTP (e.g., http://example.com), localStorage returns a different object than localStorage for the corresponding site loaded over HTTPS (e.g., https://example.com).

Here are 464 public repositories matching this topic...

Numerous Files simplifies file storage interfaces for web applications across different environments. This package allows seamless swapping between cloud, local, and in-memory storage without code modifications, facilitated through environment variables. Ideal for developers aiming for consistency across development, testing, and production phases.

  • Updated May 17, 2024
  • Python