When I tried to install sqlite3 using sudo npm install sqlite3, but it is showing some warnings and error messages 

Can anyone suggest a solution. Thanks
When I tried to install sqlite3 using sudo npm install sqlite3, but it is showing some warnings and error messages 

Can anyone suggest a solution. Thanks
sqlite require compile/build system. It's means that you must configure node-gyp
Also you can use node-pre-gyp. It provides already compiled modules
npm i node-pre-gyp
npm i sqlite
Recently sqlite was available in pre-gyp only for Node 5.x (or older).