AKZN Notes

Archives for My Lazy and Forgetful Mind

Category: Expo

Fixing Expo + npm ERR_INVALID_URL and Permission Issues on WSL

Fixing Expo + npm ERR_INVALID_URL and Permission Issues on WSL Problem Summary When running Expo inside WSL, npm errors appear such as: ERR_INVALID_URL expo: Permission denied Cause: Windows Node/NPM is being used inside WSL, and Windows-mounted paths block Linux permissions. Fix Instructions 1. Use WSL Terminal Open your Linux shell (Ubuntu app) instead of PowerShell/CMD. […]

General folder for react native (expo)

When you initialize an Expo React Native app, it follows a specific folder structure to help you organize your code and assets efficiently. Here’s the usual folder structure you’ll find in an Expo React Native project: your-project/ ├── App.tsx // Entry point of the app ├── app.json // Configuration file for Expo ├── assets/ // […]