Setup nodejs development environment with conda and nodeenv
Posted by Ha.Minh in Programming
When you want to develop your nodejs project on different node versions, you have some tools to help you install multiple node versions such as nave
, nvm
, n
. However, this is still not as nice as virtualenv
in Python, where you have completely isolated environments so one project does not ...