> 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 # Method name: siteStorage.session() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/storage/session.md # Method Description: Used for session storage of data. Use the methods in the Storage API to manage `session` data. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Store an item in session storage ```javascript import { session } from 'wix-storage-frontend'; // ... await session.setItem("key", "value"); ``` ## Retrieve an item from session storage ```javascript import { session } from 'wix-storage-frontend'; // ... let value = await session.getItem("key"); // "value" ``` ## Remove an item from session storage ```javascript import { session } from 'wix-storage-frontend'; // ... await session.removeItem("key"); ``` ## Remove all items from session storage ```javascript import { session } from 'wix-storage-frontend'; // ... await session.clear(); ```