1---
2title: Additional resources
3---
4
5import { Row } from 'react-grid-system';
6
7import { chunkArray } from '~/common/utilities';
8import TALKS from '~/public/static/talks';
9import { TalkGridCell, CellContainer } from '~/ui/components/Home';
10
11The following resources are useful for learning about Expo tooling and services.
12
13## Expo blog
14
15- [Exposition](https://blog.expo.dev/) - Our official blog, where we post release notes every month and other Expo related content at random intervals.
16
17## GitHub
18
19- [expo/expo](https://github.com/expo/expo) - Expo Go, SDK, Docs, and the Expo CLI.
20- [expo/eas-cli](https://github.com/expo/eas-cli) - The fastest way to build, submit, and update Android and iOS apps.
21- [expo/examples](https://github.com/expo/examples) - Integrations and other examples.
22- [expo/config-plugins](https://github.com/expo/config-plugins) - Expo Config Plugins for working with third-party packages.
23- [expo/snack](https://github.com/expo/snack) - Build apps from the browser.
24- [expo/vscode-expo](https://github.com/expo/vscode-expo) - VS Code extension for working with Expo tools.
25- [expo/fyi](https://github.com/expo/fyi) - Troubleshooting guides for Expo tools and services.
26
27## Documentation
28
29- [React Native](https://reactnative.dev/docs/getting-started)
30- [React](https://react.dev/learn)
31- [Metro bundler](https://facebook.github.io/metro/)
32- [Hermes engine](https://hermesengine.dev/)
33- [Apple's Human Interface Guidelines](https://developer.apple.com/design/human-interface-guidelines/guidelines/overview/)
34
35## React Native
36
37- [React Native Express](http://www.reactnativeexpress.com/) - The best way to get started with React Native! It's a walkthrough the building blocks of React and React Native.
38- [Intermediate React Native](https://frontendmasters.com/courses/intermediate-react-native/) - Paid course by Frontend Masters.
39
40## Animation and gestures
41
42- [React Native Reanimated](/versions/latest/sdk/reanimated/)
43- [React Native Gesture Handler](/versions/latest/sdk/gesture-handler/)
44
45## Navigation
46
47- [Expo Router](/routing/introduction/)
48- [React Navigation](https://reactnavigation.org/)
49
50## Talks
51
52<CellContainer>
53  {chunkArray(TALKS, 4).map(talks => (
54    <Row>
55      {talks.map(talk => (
56        <TalkGridCell {...talk} />
57      ))}
58    </Row>
59  ))}
60</CellContainer>
61