Tag: downgrade

  • How to downgrade node version on Mac

    Just follow the simple two commands and you will be able to downgrade node to it’s particular version.

    Step-1: Install N by following command

    npm install -g n

    Step-2: After successful installation of N, run following command.

    sudo n 14.15.0

    Wait for the successful process and check version.

    node -v
    v14.15.0

    And you are done!!!