Posts

Showing posts from June, 2020

How To Install Different Ionic versions in One Environment.

Ionic install for different node versions One Environment.  Or Install and Build in different node versions in ONE ionic Project. if you have error like Ionic node version issues Ionic npm version issues Ionic certificate has expired issues. ex: certificate issue. Error: certificate has expired at TLSSocket.<anonymous> (_tls_wrap.js:1088:38) at emitNone (events.js:86:13) at TLSSocket.emit (events.js:188:7) at TLSSocket._finishInit (_tls_wrap.js:610:8) at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:440:38) what we want do is, we have to install nvm we have to install npm and node version using nvm. we have to install ionic for relevant node version. follow the following steps.  $ nvm ( check whether nvm install or not ) node -v  ( check whether any node version install or not ) nvm install $ curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.35.3/install.sh -o install_nvm.sh $ nano install_nv...