Nodejs scaffolding generation

I saw that the cmd generated by webpack in the npm directory is

@IF EXIST "%~dp0\node.exe" (
  "%~dp0\node.exe"  "%~dp0\node_modules\webpack\bin\webpack.js" %*
) ELSE (
  @SETLOCAL
  @SET PATHEXT=%PATHEXT:;.JS;=;%
  node  "%~dp0\node_modules\webpack\bin\webpack.js" %*
)

but I passed npm install. The cmd generated by-g or npm link
is

@"%~dp0\node_modules\scaffolding\bin\create-new-module.js"   %*

ask for help, thank you

Mar.13,2021
Menu