Skip to content

Instantly share code, notes, and snippets.

View ZainaliSyed's full-sized avatar
🎯
Focusing

Syed Zain Ali ZainaliSyed

🎯
Focusing
View GitHub Profile
@jacks205
jacks205 / RNMultipleTargetsInstructions.md
Last active February 6, 2024 19:30
Settings up multiple app targets in React-Native
@ZainaliSyed
ZainaliSyed / Keys For Visual Studio Code.md
Last active November 16, 2021 08:01
`Shortcuts & Command` for `React-Native `

React-Native Command

Windows Commands

  • rm node_modules/
  • use ; for muti line commands
  • rm $TMPDIR/react-* ; rm ios/build ; rm node_modules ; yarn cache clean ; npm cache verify

React Native

  • react-native --help
@shukerullah
shukerullah / VSCodeSettings.md
Last active October 4, 2023 15:10
Visual Studio Code settings for React Native

React Native VSCode Settings

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, Mac OSX, and Windows.

This module will install visual studio code essential extensions and settings for react-native.

Run react-native-vscode-settings

npx react-native-vscode-settings
@shukerullah
shukerullah / watchman.sh
Last active December 21, 2017 12:45
Setup Watchman on Ubuntu
$ cd ~
$ git clone https://github.com/facebook/watchman.git
$ cd watchman/
$ git checkout v4.7.0
$ sudo apt-get install -y autoconf automake build-essential python-dev
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install