As Prashant explained it's currently impossible to update your MERN application to the latest version using mern-cli. It is however possible to make use of git to get the latest version. Here's how to do it:
Add MERN to your remote repositories (if it isn't already) git remote add mern git@github.com:Hashnode/mern-starter.git
Fetch all the things git fetch mern
Merge the master branch into yours git merge mern/master
Solve potential merge conflicts Read here how to do that
Stephan de Vries
Full stack developer, enthusiastic about new technologies.
As Prashant explained it's currently impossible to update your MERN application to the latest version using mern-cli. It is however possible to make use of
gitto get the latest version. Here's how to do it:git remote add mern git@github.com:Hashnode/mern-starter.gitgit fetch merngit merge mern/masterRead here how to do that