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
./node_modules/webpack/bin/webpack.js
npx
npx webpack
if you are using macOS, use sudo command
sudo npm install -g npx
check versions of node, npm, npx as given below. if npx is not installed then use npm i -g npx
npm i -g npx
node -v npm -v npx -v