Edit: This issue should have been resolved and Glitch seems to be working better now.
Make sure you have the latest version of the fCC dependency.
"fcc-express-bground": "https://github.com/freeCodeCamp/fcc-express-bground-pkg.git"
Open your package.json and remove the package. Wait for Glitch to finish removing it then add it back and wait for the install to finish. You should now be able to complete the challenges.
We know Glitch is having a lot of issues right now. We may have a fix for one of the problems but Glitch itself is having stability and performance issues that are out of our control.
Here are some temporary options you can try:
-
Use Codesandbox instead, submit the link from the preview browser address bar
https://githubbox.com/lasjorg/starter-project-basic-node-and-express-challenges -
Use repl.it, fork and install dependencies, submit the link from the preview browser address bar
https://repl.it/@lasjorg/boilerplate-express -
Glitch with new dependency (does not fix issues with Glitch stability and performance)
https://glitch.com/edit/#!/starter-project-basic-node-and-express-challenges -
Replace the dependency manually on your Glitch project (does not fix issues with Glitch stability and performance)
Replace the dependency:
"fcc-express-bground": "https://github.com/freeCodeCamp/fcc-express-bground-pkg.git"
With:
"fcc-express-bground": "https://github.com/lasjorg/fcc-express-bground-pkg-LJ.git"
You may have to open the terminal (Tools > Terminal) and run npm i
to make sure the package is updated.
Happy coding!