Asking for help with apis and microservices

All the tests of the challenge are completed but I am not able to proceed to the next challenge what is the problem? Please help me
Here is my current code

{
  "//1": "describes your app and its dependencies",
  "//2": "https://docs.npmjs.com/files/package.json",
  "//3": "updating this file will download and update your packages",
  "name": "hello-express",
  "version": "0.0.1",
  "description": "A simple Node app built on Express, instantly up and running.",
  "main": "server.js",
  "scripts": {
    "start": "node server.js"
  },
  "dependencies": {
    "express": "^4.16.4"
  },
  "engines": {
    "node": "8.x"
  },
  "repository": {
    "url": "https://glitch.com/edit/#!/hello-express"
  },
  "license": "MIT",
  "keywords": [
    "node",
    "glitch",
    "express"
  ],
  "author": "mutangana edgar"
}

What is the error message that you are getting?

Are you submitting the link of the actual app and not the backend where you complete the challenge?

Here is the link where the app is “https://field-iris.glitch.me/” and it is this link that I am using to paste.
And the other thing is that the are telling me that “tests completed” but the problem is the challenge is not being marked as completed?

Strange…sorry I am out of ideas! Maybe a browser issue? Hopefully someone else will come along who knows whats going on here…

can you please try to complete the challenge here is the link: https://learn.freecodecamp.org/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/

It works…but my package.json files looks quite a bit different from yours. For this exercise, the only thing you need to modify is to add an author. It looks like you’ve added quite a few other things to yours…

{
	"name": "fcc-learn-npm-package-json",
  "author": "Jane Doe",
	"dependencies": {
		"express": "^4.14.0"
	},
	"main": "server.js",
	"scripts": {
		"start": "node server.js"
	},
	"engines": {
		"node": "8.11.2"
	},
	"repository": {
		"type": "git",
		"url": "https://idontknow/todo.git"
	}
}

did you get the “You Have Completed This Challenge” pop up?

Sure did… Did you use this broilerplate provided in the introduction to start your project?

https://glitch.com/#!/import/github/freeCodeCamp/boilerplate-npm

1 Like

Thanks a lot.I didn’t use that boilerplate but you have given me it!!!:grinning:

1 Like

Awesome…glad to help! The boilerplate link I gave you was in the introduction for this challenge. In the other glitch challenges, make sure to read the introduction, they have all have the boilerplate link and other info you need to get started.

1 Like