I want to experiment with the Lungo.js examples found here: https://github.com/tapquo/Lungo.js. However, when I try to run the index.html in the example directory, it seems like the components and package directories are empty. Although these directories do exist within the bundle, they contain no files.
I have a GruntFile.coffee and a package.json which I think are supposed to help generate the required files for the example to work. But I am unsure how to make them function as intended.
To set up, I have installed the following:
sudo npm install -g grunt-cli
sudo npm install -g grunt
sudo npm install -g coffee-script
After running "coffee GruntFile.coffee," it seems successful but does not seem to create the missing files that the example needs.
Upon trying the "grunt" command, I get an error message stating "Fatal error: Unable to find local grunt."
How can I instruct this code bundle to obtain the necessary files?
Additionally, could someone explain what is happening here? (I am familiar with JavaScript and GitHub repositories, but not these frameworks)