Skip to content

Instantly share code, notes, and snippets.

@cooperka
Last active January 12, 2021 16:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save cooperka/c5dd3ab11f588044d4d6ba22d52c4ab0 to your computer and use it in GitHub Desktop.
Save cooperka/c5dd3ab11f588044d4d6ba22d52c4ab0 to your computer and use it in GitHub Desktop.
How to download FlatList and its related dependencies directly into your node_modules.
mkdir -p node_modules/react-native/Libraries/Lists/ && \
for file in 'FlatList' 'MetroListView' 'SectionList' 'VirtualizedList' 'VirtualizedSectionList' 'ViewabilityHelper' 'VirtualizeUtils'; \
do curl https://raw.githubusercontent.com/facebook/react-native/master/Libraries/Lists/${file}.js > node_modules/react-native/Libraries/Lists/${file}.js; \
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment