Testing On Mobile Devices — The Easy Way

Michael Yagudaev
3 min readMay 19, 2021

Photo by Plann on Unsplash

If you ever worked with React Native’s Expo, you know what a great mobile development experience feels like. But what about Mobile Web? Is there anything more annoying than trying to find your IP or creating an SSH tunnel with ngrok just to load a website on your phone?!

Expo developer tools let you scan a QR and see device logs in one place.

Luckily, we can use a few quick features to make our development experience on mobile web just as fun as using Expo (thanks to expo crew for pushing on the DX front 😍).

While you can easily test on your desktop with locahost:3000 and have great tools like LambdaTest for side-by-side device testing, to get a true feel, you need a physical device. There is something magical about touching your design for the first time, and testing gestures becomes easier as well.

LT Browser testing side by side virtual devices

Chrome can help us with a new QR code feature. Follow these steps:

  1. Open chrome and go to the above address adding your port (e.g. http://192.168.1.140:3000)
$ ipconfig getifaddr en0
# 192.168.1.140

2. Right-click on the page and Create QR code for this Page

# Next.js / Node.js Express
yarn dev -H 192.168.1.140

# Rails
rails s -b 192.168.1.140

3. Open chrome and go to the above address adding your port (e.g. http://192.168.1.140:3000)

4. Right-click on the page and Create QR code for this Page

Chrome context menu

5. Scan with your phone or tablet. Enjoy!

Chrome QR code

Bonus points!

Instead of using chrome’s QR code generation, we can use the terminal. You guessed it, there is an NPM package for that!

  1. Install the package
$ yarn global add qrcode-terminal

2. Generate the QR Code

$ qrcode-terminal $(printf 'http://%s\n' $(ipconfig getifaddr en0 | tr -d '\n'; echo :3000 ))
QRCode in the terminal

3. Scan with your phone/tablet. Enjoy!

(Yes, you can print QR codes in the terminal! It blew my mind too! 🤯 )

P.S.

Try creating an alias for your shell (ZSH/Bash/etc.)

# ~/.zshrc
# …

alias ip-lan="ipconfig getifaddr en0"
alias qrcode-lan="qrcode-terminal $(printf 'http://%s\n' $(ip-lan | tr -d '\n'; echo :3000 ))"
Example of using aliases to generate the IP and QR code

Originally published at https://yagudaev.com.

--

--

Michael Yagudaev

Founder of nano3labs, obsessed with react, rails, design, technology, art & business. http://nano3labs.com http://yagudaev.com/