npx command not found

前端 未结 8 854
被撕碎了的回忆
被撕碎了的回忆 2020-12-02 21:57

I am working with webpack and I need to execute ./node_modules/webpack/bin/webpack.js using npx. npx webpack would run the webpack bin

8条回答
  •  抹茶落季
    2020-12-02 22:36

    check versions of node, npm, npx as given below. if npx is not installed then use npm i -g npx

    node -v
    npm -v
    npx -v
    

提交回复
热议问题