Package.Json

Please Click on this link to access the resource folder for this lesson.

The package.json is a JSON file that defines project metadata like the name of the project, its version, and its authors. It also defines the project’s dependencies.

It is a central repository of configuration for tools, for example, names and versions for all the installed packages.
You can run npm init to auto configure your project, and create a package.json file

Scroll to Top