Node.js project with no package.json

user781486 picture user781486 · Nov 4, 2015 · Viewed 39.5k times · Source

Is it ok to have a node.js project with no package.json? The ones I see on the internet all come with package.json

What is the effect of having no package.json?

How is package.json created in the first place? Is it created automatically? I am wondering why I do not have package.json

Answer

AdityaParab picture AdityaParab · Nov 4, 2015

Fundamentally, package.json is a meta file for your application. It lists all the configuration of your application.

What is the effect of having no package.json?

Nothing as far as you're running all your code locally and have no requirement for deployment whatsoever.

Let's setup a scene for you to understand this better. Imagine that you wrote a brilliant application using node. Now all the chicks in your surrounding want it to play with. It is so fantastic! Now you want to give it to them and during the development process you npm installed so many things that your project grows beyond 4TB size.

There is no data storage device available to shit that huge code base.

Then the girl of your dream said I want it and I want it now. So you begin searching for app deployment process for node applications.

That is where you stumble upon a magical thing called package.json.

So what you do is you list all your npm installed modules under dependencies property. Then you delete node_modulesfolder, add package.json and commit the entire damn thing in github. Even the .zip file is of 10MB

Then she gets the code. Types in npm install && npm start (which will install all the dependencies from the package.json` and start your application)

If you have package.json however, that is where you specify all your dependencies.

Using --save flag of npm install

Example.

npm install express --save

How is package.json created in the first place? Is it created automatically?

You can manually create a text file and save it as package.json

OR

A more sophisticated way is to use the command

npm init

I am wondering why I do not have package.json

Me too! :)

You're most probably following a tutorial that doesn't emphasize on initial configuration of the project OR the author of those tutorials presume that the reader has all the fundamentals down to begin with.