Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Using SQL ORMs with Node.js Getting Started with Sequelize Install and Configure Sequelize and SQLite

Elias Starks
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Elias Starks
Full Stack JavaScript Techdegree Graduate 13,605 Points

Hi I am having major issues when trying to use npm start

When trying test connection and run npm start I keep getting an error

throw new Error(Please install ${moduleName} package manually);

Have you done npm install ?

1 Answer

That happened to me. I uninstalled sqlite and then installed sqlite3 instead, which ended up working for me. Not sure if that is what caused the issue, but it has got me moving forward.

I had the same error. I used 'npm install --save sqlite3' and the 'npm start' worked finally!

Thanks for the solution.