1# Expo Documentation 2 3This is the public documentation for **Expo**, its SDK, client, and services, like **EAS**. 4 5This documentation is built using Next.js and you can access it online at https://docs.expo.dev/. 6 7> **Note** **Contributors:** Please make sure that you edit the docs in the `pages/versions/unversioned` directory if you want your changes to apply to the next SDK version too! 8 9> **Note** 10> If you are looking for Expo Documentation Writing Style guidelines, please refer [Expo Documentation Style Guide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md). 11 12## Running Locally 13 14Download the copy of this repository. 15 16```sh 17git clone https://github.com/expo/expo.git 18``` 19 20Then `cd` into the `docs` directory and install dependencies with: 21 22```sh 23yarn 24``` 25 26Then you can run the app with (make sure you have no server running on port `3002`): 27 28```sh 29yarn run dev 30``` 31 32Now the documentation is running at http://localhost:3002, and any changes you make to markdown or JavaScript files will automatically trigger reloads. 33 34### To run locally in production mode 35 36```sh 37yarn run export 38yarn run export-server 39``` 40 41## Editing Docs Content 42 43You can find the content source of the documentation inside the `pages/` directory. Documentation is mostly written in markdown with the help of some React components (for Snack embeds, etc). Our API documentation can all be found under `pages/versions/`; we keep separate versions of the documentation for each SDK version currently supported in Expo Go, see ["A note about versioning"](#a-note-about-versioning) for more info. The routes and navbar are automatically inferred from the directory structure within `versions`. 44 45> **Note** 46> We are currently in the process of moving our API documentation to being auto-generated using `expotools`'s `GenerateDocsAPIData` command. 47 48Each markdown page can be provided metadata in the heading, distinguished by: 49 50``` 51--- 52metadata: goes here 53--- 54``` 55 56These metadata items include: 57 58- `title`: Title of the page shown as the heading and in search results 59- `hideFromSearch`: Whether to hide the page from Algolia search results. Defaults to `false`. 60- `hideInSidebar`: Whether to hide this page from the sidebar. Defaults to `false`. 61- `hideTOC`: Whether to hide the table of contents (appears on the right sidebar). Defaults to `false`. 62- `sidebar_title`: The title of the page to display in the sidebar. Defaults to the page title. 63- `maxHeadingDepth`: The max level of headings shown in Table of Content on the right side. Defaults to `3`. 64 65### Editing Code 66 67The docs are written with Next.js and TypeScript. If you need to make code changes, follow steps from the [Running locally](#running-locally) section, then open a separate terminal and run the TypeScript compiler in watch mode - it will watch your code changes and notify you about errors. 68 69```sh 70yarn watch 71``` 72 73When you are done, you should run _prettier_ to format your code. Also, don't forget to run tests and linter before committing your changes. 74 75```sh 76yarn prettier 77yarn test 78yarn lint 79``` 80 81## Redirects 82 83### Server-side redirects 84 85These redirects are limited in their expressiveness - you can map a path to another path, but no regular expressions or anything are supported. See client-side redirects for more of that. Server-side redirects are re-created on each run of **deploy.sh**. 86 87We currently do two client-side redirects, using meta tags with `http-equiv="refresh"`: 88 89- `/` -> `/versions/latest/` 90- `/versions` -> `/versions/latest` 91 92This method is not great for accessibility and should be avoided where possible. 93 94### Client-side redirects 95 96Use these for more complex rules than one-to-one path-to-path redirect mapping. For example, we use client-side redirects to strip the `.html` extension off, and to identify if the request is for a version of the documentation that we no longer support. 97 98You can add your own client-side redirect rules in `common/error-utilities.ts`. 99 100## Search 101 102We use Algolia as a main search results provider for our docs. Besides the query, results are also filtered based on the `version` tag which represents the user current location. The tag set in the `components/DocumentationPage.tsx` head. 103 104In `ui/components/CommandMenu/utils.ts`, you can see the `facetFilters` set to `[['version:none', 'version:{version}']]`. Translated to English, this means - search on all pages where `version` is `none`, or the currently selected version. Here are the rules we use to set this tag: 105- all unversioned pages use the version tag `none`, 106- all versioned pages use the SDK version (e.g. `v46.0.0` or `v47.0.0`), 107- all pages with `hideFromSearch: true` frontmatter entry don't have the version tag. 108 109Currently, the base results for Expo docs are combined with other results from multiple sources, like: 110- manually defined paths for Expo dashboard located in `ui/components/CommandMenu/expoEntries.ts`, 111- public Algolia index for React Native website, 112- React Native directory public API, see the directory [README.md](https://github.com/react-native-community/directory#i-dont-like-your-website-can-i-hit-an-api-instead-and-build-my-own-better-stuff) for more details. 113 114## Quirks 115 116- You can't have curly brace without quotes: \`{}\` -> `{}` 117- Make sure to leave an empty newline between a table and following content 118 119## A note about versioning 120 121Expo's SDK is versioned so that apps made on old SDKs are still supported 122when new SDKs are released. The website documents previous SDK versions too. 123 124Version names correspond to directory names under `versions`. 125 126`unversioned` is a special version for the next SDK release. It is not included in production output. Additionally, any versions greater than the package.json `version` number are not included in production output, so that it's possible to generate, test, and make changes to new SDK version docs during the release process. 127 128`latest` is an untracked folder which duplicates the contents of the folder matching the version number in **package.json**. 129 130Sometimes you want to make an edit in version `X` and have that edit also 131be applied in versions `Y, Z, ...` (say, when you're fixing documentation for an 132API call that existed in old versions too). You can use the 133`./scripts/versionpatch.sh` utility to apply your `git diff` in one version in 134other versions. For example, to update the docs in `unversioned` then apply it 135on `v8.0.0` and `v7.0.0`, you'd do the following after editing the docs in 136`unversioned` such that it shows up in `git diff`: 137 138`./scripts/versionpatch.sh unversioned v8.0.0 v7.0.0` 139 140Any changes in your `git diff` outside the `unversioned` directory are ignored 141so don't worry if you have code changes or such elsewhere. 142 143## Deployment 144 145The docs are deployed automatically via a GitHub Action each time a PR with docs changes is merged to `main`. 146 147## How-tos 148 149## Internal linking 150 151If you need to link from one MDX file to another, please use the path-reference to this file including extension. 152This allows us to automatically validate these links and see if the file and/or headers still exists. 153 154- from: `tutorial/button.md`, to: `/workflow/guides/` -> `../workflow/guides.md` 155- from: **index.md**, to: `/guides/errors/#tracking-js-errors` -> `./guides/errors.md#tracking-js-errors` (or without `./`) 156 157You can validate all current links by running `yarn lint-links`. 158 159### Updating latest version of docs 160 161When we release a new SDK, we copy the `unversioned` directory, and rename it to the new version. Latest version of docs is read from **package.json** so make sure to update the `version` key there as well. 162 163Make sure to also grab the upgrade instructions from the release notes blog post and put them in `upgrading-expo-sdk-walkthrough.md`. 164 165That's all you need to do. The `versions` directory is listed on server start to find all available versions. The routes and navbar contents are automatically inferred from the directory structure within `versions`. 166 167Because the navbar is automatically generated from the directory structure, the default ordering of the links under each section is alphabetical. However, for many sections, this is not ideal UX. 168So, if you wish to override the alphabetical ordering, manipulate page titles in **constants/navigation.js**. 169 170### Syncing app.json / app.config.js with the schema 171 172To render the app.json / app.config.js properties table, we currently store a local copy of the appropriate version of the schema. 173 174If the schema is updated, in order to sync and rewrite our local copy, run `yarn run schema-sync <SDK version integer>` or `yarn run schema-sync unversioned`. 175 176### Adding Images and Assets 177 178You can add images and assets to the `public/static` directory. They'll be served by the production and staging servers at `/static`. 179 180#### Adding videos 181 182- Record the video using QuickTime 183- Install `ffmpeg` (`brew install ffmpeg`) 184- Run `ffmpeg -i your-video-name.mov -vcodec h264 -acodec mp2 your-video-name.mp4` to convert to mp4. 185- If the width of the video is larger than ~1200px, then run this to shrink it: `ffmpeg -i your-video.mp4 -filter:v scale="1280:trunc(ow/a/2)*2" your-video-smaller.mp4` 186- Put the video in the appropriate location in `public/static/videos` and use it in your docs page MDX like this: 187 188```js 189import Video from '~/components/plugins/Video'; 190 191// Change the path to point to the relative path to your video from within the `static/videos` directory 192<Video file="guides/color-schemes.mp4" />; 193``` 194 195### Inline Snack examples 196 197Snacks are a great way to add instantly-runnable examples to our docs. The `SnackInline` component can be imported to any markdown file, and used like this: 198 199<!-- prettier-ignore --> 200```jsx 201import SnackInline from '~/components/plugins/SnackInline'; 202 203<SnackInline label='My Example Label' dependencies={['array of', 'packages', 'this Snack relies on']}> 204 205// All your JavaScript code goes in here 206 207// You can use: 208/* @info Some text goes here */ 209 const myVariable = SomeCodeThatDoesStuff(); 210/* @end */ 211// to create hoverable-text, which reveals the text inside of `@info` onHover. 212 213// You can use: 214/* @hide Content that is still shown, like a preview. */ 215 Everything in here is hidden in the example Snack until 216 you open it in snack.expo.dev 217/* @end */ 218// to shorten the length of the Snack shown in our docs. Common example are hiding useless code in examples, like StyleSheets 219 220</SnackInline> 221``` 222 223### Embedding multiple options of code 224 225Sometimes it's useful to show multiple ways of doing something, for instance maybe you'd like to have an example using a React class component, and also an example of a functional component. 226The `Tabs` plugin is really useful for this, and this is how you'd use it in a markdown file: 227 228<!-- prettier-ignore --> 229```jsx 230import { Tabs, Tab } from '~/ui/components/Tabs'; 231 232<Tabs> 233<Tab label="Add 1 One Way"> 234 235 addOne = async x => { 236 /* @info This text will be shown onHover */ 237 return x + 1; 238 /* @end */ 239 }; 240 241</Tab> 242<Tab label="Add 1 Another Way"> 243 244 addOne = async x => { 245 /* @info This text will be shown onHover */ 246 return x++; 247 /* @end */ 248 }; 249 250</Tab> 251</Tabs> 252``` 253 254n.b. The components should not be indented or they will not be parsed correctly. 255 256### Excluding pages from DocSearch 257 258To ignore a page from the search result, use `hideFromSearch: true` on that page. This removes the `<meta name="docsearch:version">` tag from that page and filters it from our facet-based search. 259 260Please note that `hideFromSearch` only prevents the page from showing up in the internal docs search (Algolia). The page will still show up in search engine results like Google. 261For a page to be hidden even from search engine results, you need to edit the sitemap that is generated via our Next.js config (**next.config.js**). 262 263### Excluding directories from the sidebar 264 265Certain directories are excluded from the sidebar in order to prevent it from getting too long and unnavigable. You can find a list of these directories, and add new ones, in **constants/navigation.js** under `hiddenSections`. 266 267If you just want to hide a single page from the sidebar, set `hideInSidebar: true` in the page metadata. 268 269### Use `Terminal` component for shell commands snippets 270 271Whenever shell commands are used or referred, use `Terminal` component to make the code snippets copy/pasteable. This component can be imported in any markdown file. 272 273```jsx 274import { Terminal } from '~/ui/components/Snippet'; 275 276// for single command and one prop 277<Terminal cmd={["$ npx expo install package"]} /> 278 279// for multiple commands 280 281<Terminal cmd={[ 282 "# Create a new native project", 283 "$ npx create-expo-app --template bare-minimum", 284 "", 285 "# If you don’t have expo-cli yet, get it", 286 "$ npm i -g expo-cli", 287 "", 288]} cmdCopy="npx create-expo-app --template bare-minimum && npm i -g expo-cli" /> 289``` 290 291### Prettier 292 293Please commit any sizeable diffs that are the result of `prettier` separately to make reviews as easy as possible. 294 295If you have a code block using `/* @info */` highlighting, use `{/* prettier-ignore */}` on the block and take care to preview the block in the browser to ensure that the indentation is correct - the highlighting annotation will sometimes swallow newlines. 296 297## TODOs: 298 299- Handle image sizing in imports better 300- Make Snack embeds work; these are marked in some of the React Native docs but they are just imported as plain JS code blocks 301