Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 1.09 KB

TROUBLESHOOTING.md

File metadata and controls

20 lines (15 loc) · 1.09 KB

Troubleshooting

Problem after installation (Windows OS):

I successfully installed Monaca Localkit, but after writing my credentials and pressing Sign In button, the UI freezes.

Solution:

The problem might be in the installation of Node.js. If you installed Node.js through .msi installer on Node.js official website, we suggest you to use NVM for Windows to manage your Node.js versions instead.

  1. Uninstall Node.js from your computer. Refer to this manual.
  2. Install NVM for Windows.
  3. After installation, download a Node.js version 14.19.0 and set this version to be used:
    $ nvm install 14.19.0
    $ nvm use 14.19.0
    For more information about managing multiple Node.js versions, refer to this documentation.
  4. Install Monaca Localkit again.
  5. The login should work now.