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

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

    use command npm init -f to generate package.json file and after that use --save after each command so that each module will automatically get updated inside your package.json for ex: npm install express --save

提交回复
热议问题