What does this “react-scripts eject” command do?

后端 未结 3 1190
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-05 01:26

What does the npm run eject command do? I do understand what other commands do like start, build, test. But no idea about eject.

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-05 02:14

    create-react-app encapsulates all of the npm modules it is using internally, so that your package.json will be very clean and simple without you having to worry about it.

    However, if you want to start doing more complex things and installing modules that may interact with modules create-react-app is using under the hood, those new modules need to know what is available and not, meaning you need to have create-react-app un-abstract them.

    That, in essence, is what react-scripts eject does. It will stop hiding what it's got installed under the hood and instead eject those things into your project's package.json for everyone to see.

提交回复
热议问题