Boilerplate-express failure on repl.it

Started the Express class, and went to the repl.it site. boilerplate-express references fcc-express-bground, but it’s not found on the npm registry.

 npm install fcc-express-bground
...
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/fcc-express-bground - Not found
npm ERR! 404 
npm ERR! 404  'fcc-express-bground@latest' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/runner/.npm/_logs/2021-11-02T16_36_44_875Z-debug.log
 

You do not need to install it manually, it will be installed when you run the replit (from the package.json).

It gets installed from a GitHub repo.

	"dependencies": {
		"express": "^4.14.0",
		"body-parser": "^1.15.2",
		"cookie-parser": "^1.4.3",
		"fcc-express-bground": "https://github.com/freeCodeCamp/fcc-express-bground-pkg.git"
	}

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.