I can't install react using npx create-react-app?

后端 未结 15 1096
渐次进展
渐次进展 2020-12-29 06:15

I am trying to use npx create-react app but i have errors that is shown below:

npm ERR! Unexpected end of Json input w         


        
15条回答
  •  爱一瞬间的悲伤
    2020-12-29 07:15

    npm uninstall -g create-react-app
    npx create-react-app my-app
    

    You don't need to install the create-react-app package globally. 'npx' is already installing with the latest version.

    Quick start

提交回复
热议问题