I was trying to start a app on port 80 I currently working on through WSL.
It just works fine.

I started it with yarn start. Executing this command in a Windows command line or a PowerShell in the same directory is working fine. Changing the port to something else resolves the issue in WSL too.
Run these commands in the project folder and fill in their results:
npm ls react-scripts (if you haven鈥檛 ejected): 1.0.6node -v: 6.11.0npm -v: 3.10.10Then, specify:
Did you try using sudo? Any port under 1024 generally requires administrative permissions.
@Timer Ah didn't know that. Thanks. Is working with sudo now.
Most helpful comment
Did you try using
sudo? Any port under1024generally requires administrative permissions.