Why do we need to use package.json? [duplicate]

喜夏-厌秋 提交于 2019-12-03 16:11:56

You do not NEED package.json. However, you will most likely want it. As you make larger applications using node.js, you will find that using other people's code is the best solution vs. writing the same thing yourself.

npm has lots of packages that people want to use over and over again. package.json provides a simple way for people to keep track of packages they use in their application.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!