> 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: Install SDK Packages ## Article: Install SDK Packages ## Article Link: https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/install-sdk-packages.md ## Article Content: # Install SDK Packages To use a package from the Wix JavaScript SDK, you need to install it and import it in your code. ## 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/` 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/` or `yarn add @wix/`. | | Headless sites and apps | Run `npm install @wix/` or `yarn add @wix/`. | ## Import the package To import the package in your code: ```js import { } from "@wix/"; ```