I'm cloning a repo with Yeoman, what configuration do I need on my computer?

gruntjs, node.js, yeoman

Solution

The first time, you have to run npm install.

This will install all the needed dependencies as described in the `package.json`

Subsequently, if anyone add a new dependency into this file, you will need to run `npm install` or `npm update` again.

Problem

I have cloned a repo that has Yeoman installed. I installed node, as well as Yeoman `npm i -g yo`. When I run `grunt` I get an error stating: `Error: Cannot find module 'load-grunt-tasks' Warning: Task "default" not found. Use --force to continue.` What else do I need to do to be able to run this repo successfully?

Original source