0%

Npm Toolkit

  1. npm install fail with unknown reason.

    Try clean the cache before installation:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    # Clean cache
    rm -rf node_modules
    rm package-lock.json
    npm cache clean -f

    # Install packages
    npm i

    # Check npm packages version
    npm outdated

    # Update pacakges
    npm update