Skip to content

Instantly share code, notes, and snippets.

@gardner
Last active August 8, 2017 06:18
Show Gist options
  • Save gardner/aac8c149ded65a9be61997a7aabd6c1c to your computer and use it in GitHub Desktop.
Save gardner/aac8c149ded65a9be61997a7aabd6c1c to your computer and use it in GitHub Desktop.
Create React Native App with Maps
#!/bin/bash
npm install -g react-native-cli && \
react-native init MDemo && cd MDemo && \
git init && git add . && git commit -am "Initial commit after react-native init" && \
npm install --save react-native-maps && react-native link react-native-maps && \
git commit -am "Added react-native-maps and then ran: react-native link react-native-maps"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment