Installs no Gulp plugin for example

npm i gulp-sass --save-dev 

He writes about an unsupported platform:

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules \ ch okidar \ node_modules \ fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents @ 1.0.17: wanted {"os": "darwin", "arch": "any"} (current: {"os": "win32", "arch": "x64"})

npm WARN my_project@1.0.0 No repository field.

D: \ Gulp \ myProject>

Where to dig?

    2 answers 2

    Your plugins are normally installed. You can check this by opening the node_modules folder and making sure that there is a folder with the same name as the module (in your case, gulp-sass ).


    For reference

    Warn is short for warning . Obviously, the " warning " is not the same as the " error ".

    Moreover, the design:

    SKIPPING OPTIONAL DEPENDENCY

    literally translated as:

    Missed any optional dependency

    This means that there is nothing to worry about.

    • thanks, everything is clear, figured out - Proshka

    You can check the installed plugins in the project folder (where gulpfile.js is located) by gulpfile.js :
    npm ls --depth=0 .
    This is a more convenient form than rummaging through all the endless dependencies of npm.