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

后端 未结 10 928
梦毁少年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:53

    Running npm init -y makes your package.json with all the defaults.
    You can then change package.json accordingly
    This saves time many a times by preventing pressing enter on every command in npm init

提交回复
热议问题