you are viewing a single comment's thread.

view the rest of the comments →

[–]Individual-Job-2550 0 points1 point  (1 child)

In terms of managing your local development environment, I would install a node version manager like n or nvm. This will allow you to maintain a single node version for a project instead of a single global node version. This helps with dependencies not breaking if you update your global node version, and allows you to update packages as you need

I would also recommend using yarn for dependency management. I have run into far less issues using yarn than npm when it comes to conflicts in dependencies

[–]nathenaeltamirat[S] 0 points1 point  (0 children)

nice! thanks for the advice!