Is there a way to automatically build the package.json file for Node.js projects

后端 未结 10 911
梦毁少年i
梦毁少年i 2020-11-29 14:30

Is package.json supposed to be manually edited? Couldn\'t a program like npm just look through the files, see the \"require\" statements, and then use that to put the necess

10条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 14:51

    The package.json file is used by npm to learn about your node.js project.

    Use npm init to generate package.json files for you!

    It comes bundled with npm. Read its documentation here: https://docs.npmjs.com/cli/init

    Also, there's an official tool you can use to generate this file programmatically: https://github.com/npm/init-package-json

提交回复
热议问题