Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 990 Bytes

TROUBLESHOOTING.md

File metadata and controls

37 lines (29 loc) · 990 Bytes

TROUBLESHOOTING

This guide is for all the things you encounter setting up the build environment for the MOLGENIS frontend.

Setting up node and yarn

If you setup node and yarn please check:

  • NodeJS
  • Yarn
    • Windows: Download yarn MSI file from yarn website
    • Mac and Linux: curl -o- -L https://yarnpkg.com/install.sh | bash Could be usefull to reload your terminal, because of updates in you .bash_profile

Using NVM

To install NodeJS or a new version of NodeJS on your system please follow the steps below.

Mac or Linux

# to install node (latest)
nvm install node

# to use a specific version of node
nvm list
nvm use #node version#

Windows

# to install node (latest)
nvm install node

# to use a specific version of node
nvm list
nvm use #node version#