For some reason it is not completing task. Help?
Here’s the full replit: boilerplate-express - Nix (beta) Repl - Replit
{
"author": "Jose M",
"description": "A project that does something awesome",
"name": "fcc-learn-node-with-express",
"version": "0.1.0",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"dotenv": "^16.0.1",
"express": "^4.14.0",
"fcc-express-bground": "https://github.com/freeCodeCamp/fcc-express-bground-pkg.git"
},
"main": "server.js",
"scripts": {
"start": "node server.js"
}
}
ILM
2
please when you ask for help give always the link to the freecodecamp challenge
the author in the replit you posted is just some spaces, try adding a word in there
1 Like
It doesn’t look like you are using the correct starter code.
It looks like you are using the starter code for the express challenges, but these lessons are for the managing packages with NPM.
I would make sure to use the correct starter code.
For example, your starter package.json should look like this
{
"name": "fcc-learn-npm-package-json",
"dependencies": {
"express": "^4.14.0"
},
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://idontknow/todo.git"
}
}
1 Like
Exactly what it was. Thank you!
system
Closed
6
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.