webpack command not working

前端 未结 7 1864
谎友^
谎友^ 2020-12-01 04:09

I am new to Node Js and Webpack. I tried to start a project with module-loaders.

Firstly, I installed nodeJs and NPM and created a new directory called tutoria

7条回答
  •  没有蜡笔的小新
    2020-12-01 04:36

    Installing webpack with -g option installs webpack in a folder in

    C:\Users\<.profileusername.>\AppData\Roaming\npm\node_modules

    same with webpack-cli and webpack-dev-server

    Outside the global node_modules a link is created for webpack to be run from commandline

    C:\Users\<.profileusername.>\AppData\Roaming\npm

    to make this work locally, I did the following

    1. renamed the webpack folder in global node_modules to _old
    2. installed webpack locally within project
    3. edited the command link webpack.cmd and pointed the webpack.js to look into my local node_modules folder within my application

    Problem with this approach is you'd have to maintain links for each project you have. Theres no other way since you are using the command line editor to run webpack command when installing with a -g option.

    So if you had proj1, proj2 and proj3 all with their local node_modules and local webpack installed( not using -g when installing), then you'd have to create non-generic link names instead of just webpack.

    example here would be to create webpack_proj1.cmd, webpack_proj2.cmd and webpack_proj3.cmd and in each cmd follow point 2 and 3 above

    PS: dont forget to update your package.json with these changes or else you'll get errors as it won't find webpack command

提交回复
热议问题