You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, you don't even need to install gulp. For projects that need it, it should just be a package.json dependency. Gulp's executable comes packaged with it in it's bin directory. Then in the package.json file you can do
"scripts": {
"gulp": "gulp"
}
npm creates a .bin directory under node_modules/ and throws all dependency executables in there. When you configure a command in the script section of package.json like shown above, npm it will look under node_modules/.bin first for the command.
@recursivefunk, what is needed for a good baseline node dev environment?
The text was updated successfully, but these errors were encountered: