1:: Created by npm, please don't edit manually. 2@ECHO OFF 3 4SETLOCAL 5 6SET "NODE_EXE=%~dp0\node.exe" 7IF NOT EXIST "%NODE_EXE%" ( 8 SET "NODE_EXE=node" 9) 10 11SET "NPM_CLI_JS=%~dp0\node_modules\npm\bin\npm-cli.js" 12SET "NPX_CLI_JS=%~dp0\node_modules\npm\bin\npx-cli.js" 13FOR /F "delims=" %%F IN ('CALL "%NODE_EXE%" "%NPM_CLI_JS%" prefix -g') DO ( 14 SET "NPM_PREFIX_NPX_CLI_JS=%%F\node_modules\npm\bin\npx-cli.js" 15) 16IF EXIST "%NPM_PREFIX_NPX_CLI_JS%" ( 17 SET "NPX_CLI_JS=%NPM_PREFIX_NPX_CLI_JS%" 18) 19 20"%NODE_EXE%" "%NPX_CLI_JS%" %* 21