Managing Packages with NPM - How to Use package.json, the Core of Any Node.js Project or npm Package

It had said me to add an author to the package.json file. Which I had added. But it remained unsuccessful.

Your project link(s)
{
“author”: “Rahmat Ullah”,
“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
}
}

solution: boilerplate-npm (5) - Replit

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

Challenge: Managing Packages with NPM - How to Use package.json, the Core of Any Node.js Project or npm Package

Link to the challenge:

There is a problem with live repl urls sometimes.
The page doesn’t load and you get an error message:

This site can’t provide a secure connection.

Instead of submitting the usual live repl url for your project:
https://boilerplate-npm-5.rahmatullah11.repl.co/

You can amend the url slightly like this:
https://boilerplate-npm-5--rahmatullah11.repl.co/

…and then the challenge will pass.

1 Like

Thank You. It works.

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