> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Introduction ## Article: Introduction ## Article Link: https://dev.wix.com/docs/sdk/frontend-modules/storage/introduction.md ## Article Content: # About Storage There are three types of storage: | Type | Persistence | Data Limit | Typical Usage | |--------------|-------------|------------|-------------| | **Local** | Data never expires and persists even when the site visitor closes the page. When the site visitor reopens the page later, the data can still be retrieved. | 50kb | Store site visitor state between sessions. | | **Session** | Data is available while session is active. Once the browser tab or window closes, the data expires. Reloading the page or navigating to other pages doesn't affect session storage. | 1mb | Pass data between pages on the site. | | **Memory** | Data expires when the site visitor closes or refreshes the current page, or navigates to a different page. | 1mb | Store data on the current page only. | Get hands-on experience with the Frontend Storage API on our [Hello Storage](https://www.wix.com/velo/example/hello-storage) example page, or watch a demo: `youtube:https://www.youtube.com/watch?v=jb3HRJYhFf4` Some older browsers may not fully support `@wix/site-storage`. See [Browser compatibility](https://developer.mozilla.org/en-US/docs/Web/API/Storage#Browser_compatibility) for more information.