Skip to content
Advertisement

Why does my localhost:3000 not work (error 500)

I am trying to follow a tutorial but i run into problems before i even have written a line of code. only terminal commands as seen below:

JavaScript

When i go to the localhost i get presented a blank page (in the tutorial it shows a visual and some text.

When i inspect the page i get presented by there errors:

JavaScript

Aswel as this issue:

A page or script is accessing at least one of navigator.userAgent, navigator.appVersion, and navigator.platform. Starting in Chrome 101, the amount of information available in the User Agent string will be reduced. To fix this issue, replace the usage of navigator.userAgent, navigator.appVersion, and navigator.platform with feature detection, progressive enhancement, or migrate to navigator.userAgentData. Note that for performance reasons, only the first access to one of the properties is shown. 1 source bubble_compiled.js:1

Advertisement

Answer

This could be a permission issue. You are working inside OneDrive folder. So there is a probability that OneDrive is constantly watching every change inside the inner folders and blocking access for other applications. Try starting your project anew in another folder. Preferably in ‘C:UsersrubenDesktop’.

Advertisement