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 tutorial
. I used the command prompt to cd into this directory and then ran the following command npm init
and then installed webpack via npm
using the command below :
npm install -S webpack
The 1st command installed webpack locally into the project under the 'node-modules' directory and I can run my project by doing this:
nodejs node-modules/webpack/bin/webpack.js
The problem with this is that I have to place my webpack.config.js
file inside of this directory which I want to place in my project root.
One solution to this problem was to install webpack globally on my machine which I did using the command below :
npm install -g webpack
This installed Webpack and now I do have a Webpack command. However, this command does not seem to be working or doing anything at all. When I try to run this from my project's root directroy it does not do anything at all (See Screenshot)
Please tell me what I am doing wrong!!
webpack
is not only in yournode-modules/webpack/bin/
directory, it's also linked innode_modules/.bin
.You have the
npm bin
command to get the folder where npm will install executables.You can use the
scripts
property of yourpackage.json
to use webpack from this directory which will be exported.For example:
You can then run it with:
Or even with arguments:
This allow you to have you
webpack.config.js
in the root folder of your project without having webpack globally installed or having your webpack configuration in thenode_modules
folder.installs webpack globally on your system, that makes it available in terminal window.
Actually, I have got this error a while ago. There are two ways to make this to work, as per my knowledge.
I had to reinstall webpack to get it working with my local version of webpack, e.g:
The quickest way, just to get this working is to use the web pack from another location, this will stop you having to install it globally or if
npm run webpack
fails.When you install webpack with npm it goes inside the "
node_modules\.bin
" folder of your project.in command prompt (as administrator)
You can run
npx webpack
. The npx command, which ships with Node 8.2/npm 5.2.0 or higher, runs the webpack binary (./node_modules/.bin/webpack) of the webpack package. Source of info: https://webpack.js.org/guides/getting-started/