Server not starting after upgrade to Node 6.0
@parthipansowmi What error do you see? Your environment? Version of RSK?
This is error I am getting
throw new Error('Please install sqlite3 package manually');
^
Error: Please install sqlite3 package manually
at new ConnectionManager
(D:MyAppnode_modulessequelizelibdialectssqliteconnection-manager.js:25:13)
at new SqliteDialect
(D:MyAppnode_modulessequelizelibdialectssqliteindex.js:12:28)
at new Sequelize
(D:MyAppnode_modulessequelizelibsequelize.js:233:18)
at Object.
at webpack_require (D:MyAppbuildwebpack:webpackbootstrap
a8bb5fb394643a4b9120:19:1)
at Object.module.exports.Object.defineProperty.value
(D:MyAppbuildwebpack:datamodelsindex.js:10:1)
at webpack_require (D:MyAppbuildwebpack:webpackbootstrap
a8bb5fb394643a4b9120:19:1)
at Object.
at webpack_require (D:MyAppbuildwebpack:webpackbootstrap
a8bb5fb394643a4b9120:19:1)
at Object.
at webpack_require (D:MyAppbuildwebpack:webpackbootstrap
a8bb5fb394643a4b9120:19:1)
at D:MyAppbuildwebpack:webpackbootstrap a8bb5fb394643a4b9120:39:1
at Object.
a8bb5fb394643a4b9120:39:1)
at Module._compile (module.js:541:32)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
On Tue, Jun 14, 2016 at 12:11 AM, Vladimir Kutepov <[email protected]
wrote:
@parthipansowmi https://github.com/parthipansowmi What error do you
see? Your environment? Version of RSK?—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/kriasoft/react-starter-kit/issues/700#issuecomment-225670773,
or mute the thread
https://github.com/notifications/unsubscribe/AF6OB-MQCBIJVJXEPCTkSKJmpMYTkhiOks5qLaRPgaJpZM4I0bGM
.
Try to install sqlite3 package manually, if it doesn't help, reinstall node modules:
rm -rf node_modules
npm install
I solved this by running:
npm rebuild
I had this same error when trying to push my repo to heroku. Fixed it by specifying
"engines": {
"node": "5.0"
}
in my package.json.
@colinharris05 fixed it for me. For my specific node version, it was: "engines": { "node": "7.4.0" }
Most helpful comment
I solved this by running: