BearCola
2/15/2019 - 9:16 AM

NVM 설치

Need to downgrade node version to **8.9.3**
use **NVM** to manage more than one version
https://github.com/creationix/nvm
then install an old version:
`nvm install 8.9.3`
use in your open terminal:
`nvm use 8.9.3`
or set as default:
`nvm alias default 8.9.3`
verify the version with:
`node -v`
only now install sqlite 3
`npm install sqlite3`