Can't load live url

I imported a project from Github (it’s the express local library tutorial from MDN). I tried to copy and paste the url that’s supposed to let me view the live site but the page is stuck loading.
Can anyone help me figure out what’s wrong? The url for the code is working:

Hi there - check your project’s logs in the editor, it looks like the issue is a syntax that was only introduced in a newer version of Node. Your package.json wants a version of Node that’s not available on our containers, so it’s defaulting to Node 10 probably which isn’t compatible with the syntax your app is using, so I recommend you try replacing it with “16.x” which is the highest we have for now. You can read more about Node version on Glitch here: https://help.glitch.com/hc/en-us/articles/16287495688845-What-version-of-Node-can-I-use-and-how-do-I-change-update-upgrade-it

1 Like

I replaced the node version in my editor with “16.x” and it worked! Thank you so much :slight_smile:

1 Like