> 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: wix-storage-frontend ## Namespace: storage ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-storage-frontend/storage/introduction.md ## Article Content: # Introduction To learn more about local, session, or memory storage, see the Storage API. Get hands-on experience with the Storage API on the [Hello Storage](https://dev.wix.com/docs/coding-examples/getting-started/hello-world/hello-storage.md) example page. To use the Frontend Storage API, import the needed storage types from the `wix-storage-frontend` module: ```javascript import {local, session, memory} from 'wix-storage-frontend'; // Or one of: import {local} from 'wix-storage-frontend'; import {session} from 'wix-storage-frontend'; import {memory} from 'wix-storage-frontend'; ```