Skip to content

Instantly share code, notes, and snippets.

View abhijayrajvansh's full-sized avatar
🧠
aura enuf?

Abhijay Rajvansh abhijayrajvansh

🧠
aura enuf?
View GitHub Profile
@abhijayrajvansh
abhijayrajvansh / expowind.sh
Created April 6, 2025 14:05
expo-nativewind-install-script
#!/bin/bash
# Exit immediately if a command exits with a non-zero status
set -e
echo "Enter the name of your new Expo project:"
read PROJECT_NAME
# Step 1: Initialize Expo app
npx create-expo-app@latest "$PROJECT_NAME"
#!/bin/bash
# Exit immediately if a command exits with a non-zero status
set -e
# Define the version you want to install
VERSION="1.34" # Replace with the desired version if needed
# Define the download URL for the specified version
URL="https://ftp.gnu.org/gnu/tar/tar-${VERSION}.tar.gz"