Managing Packages with Npm: Added live link but still not accepted answer

Tell us what’s happening:
I did the first lesson: How to Use package.json, the Core of Any Node.js Project or npm Package

Your code so far

Here is my package.json file

{
  "name": "fcc-lesson-1",
    "author": "Avinash Dhumal",
  "version": "1.0.0",
  "description": "Free code camp lesson 1 ",
  "main": "index.js",
  "scripts": {
    "start": "node index",
    "dev": "nodemon index"
  },
  "keywords": [
    "fcc"
  ],
  "license": "MIT",
  "dependencies": {
    "express": "^4.17.1"
  },
  "devDependencies": {
    "nodemon": "^2.0.7"
  }
}

But my output is not accepted.
I added my app link:
https://repl.it/@AvinashDhumal/fcc-lesson-1
but still not accepted answer

Your browser information:

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

Challenge: How to Use package.json, the Core of Any Node.js Project or npm Package

Link to the challenge:

the live app link is the one that appear above the preview - have you tried with that one?

1 Like

Here’s a visual aid for obtaining your live link:

1 Like

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