> 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: Setup ## Article: Setup ## Article Link: https://dev.wix.com/docs/sdk/frontend-modules/site/setup.md ## Article Content: # Setup @package_metadata:@wix/site-site To use the Site API, install the `@wix/site-site` package. ## Install the package Follow the installation instructions for your development environment. | Development environment | Installation method | |--|--| | Wix sites (editor or IDE) | Use the [package manager](https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/packages/work-with-npm-packages-in-the-editor.md). | | Wix sites (local IDE) | Run `wix install @wix/site-site` using the [Wix CLI](https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/packages/work-with-npm-packages-with-the-wix-cli.md).| | Blocks apps | Use the same installation method as Wix sites. | | CLI and self-hosted apps | Run `npm install @wix/site-site` or `yarn add @wix/site-site`. | ## Import the package To import the package in your code: ```js import { site } from "@wix/site-site"; ```