Search code examples
gulpgulp-sass

Gulp doesn't work


I installed gulp on my machine, but when i try to compile my project i have this error:

Error: Cannot find module 'del'
    at Function.Module._resolveFilename (module.js:338:15)
    at Function.Module._load (module.js:280:25)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)
    at Object.<anonymous> (/Applications/MAMP/htdocs/project/gulpfile.js:6:11)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:364:17)

I dont understand the error and i dont know how solve. Someone can help me? Thanks


Solution

  • This error message indicates that the module 'del' cannot be found. It seems that the 'del' package is not installed or not properly configured in your project.

    Try installing the 'del' package by running the following command in your terminal:

    npm install del --save-dev
    

    If you have already installed 'del' package and still getting this error, try uninstalling and then reinstalling it.

    npm uninstall del
    npm install del --save-dev
    

    Also make sure that you have the latest version of npm and node installed on your machine.

    npm install -g npm
    

    After installing or reinstalling 'del' package, you can try running the gulp command again and see if the error persists.