You are viewing a single comment's thread from:

RE: Getting started with Hive app development

in STEMGeeks3 years ago (edited)

Good point on keeping node and npm updated. When I started messing with java script apps I mistakenly installed an old version of node. And it caused all kinds of problems. Once I updated to the current stable version all of the problems were gone. So always check your node version and use nvm to update if needed.

Sort:  

Sometimes upgrading to latest version causes problems as well. This is why many apps freeze versions of packages and test upgrading them as a single commit.

Ah yeah, I tend to follow whatever version the dev says their app runs on when I can.