sidb
sidb

Reputation: 211

How do you run gulp if gulp is installed(node_modules) in different folder than gulpfile.js

I have gulpfile.js in one directory and node_modules in another. When I run gulp, i get the error - 'Local gulp not found in '..(the directory).. Try running: npm install gulp'

The thing is - I cannot install gulp in the directory of gulpfile.js and so I need a way to tell the gulp to refere to the other directory i have gulp installed in.

Upvotes: 20

Views: 18406

Answers (4)

Gabriel Furstenheim
Gabriel Furstenheim

Reputation: 3628

There is no need to install gulp globally. First install gulp (ideally on dev dependencies)

npm install gulp --save-dev

Then in the package.json add the line you want to run

"scripts" : {
    "gulp" : "gulp"
}

Finally in the command line use

npm run gulp

npm will use the binary from the node modules without any need to install it globally or to write down the whole path

Upvotes: 5

w411 3
w411 3

Reputation: 3039

Put the node_modules folder in parent directory always, then make project directory as child/grandchild folder.

Don't put the node_modules folder in any child directory

Folder structure will be like:

parent

└──node_modules

└─project_1

└─project_2

In any child/grand child directory gulp will work

Upvotes: 0

idancali
idancali

Reputation: 867

You don't need to install gulp globally if you don't want to. What you can do is run your gulp executable (from your node_modules) and then pass in the location of your gulpfile using the --gulpfile parameter. Also, if you want to control where your gulp is running, make use of the --cwd parameter.

Here's an example:

 <NODE_MODULES DIR>/gulp/bin/gulp.js --gulpfile <GULP FILE> --cwd <SOME DIR>

Upvotes: 34

TbWill4321
TbWill4321

Reputation: 8676

You need to install gulp globally:

npm install -g gulp

This will allow you to run gulp from the command line in any directory.

Upvotes: 3

Related Questions