In the package.json, the name of this app is kbw-countdown
this projects's git repo url is https://github.com/kbwood/countdown.git
depending on your version of node/npm it may install the package like this when using the git url to install:
"countdown": "git://github.com/kbwood/countdown#2.1.0",
this caused a problem for me, in that there was no countdown nor kbw-coutdown directory in my node_modules directory.
I ended up having to manually update this package's entry in package.json like so:
"kbw-countdown": "git://github.com/kbwood/countdown#2.1.0"
in order to have it properly install.
I assume the best solution would be to register this project as a package on npm.
However if that's not an option, then renaming this repo so the repo name and the name in package.json matches up should solve the issue
In the package.json, the name of this app is
kbw-countdownthis projects's git repo url is https://github.com/kbwood/countdown.git
depending on your version of node/npm it may install the package like this when using the git url to install:
"countdown": "git://github.com/kbwood/countdown#2.1.0",this caused a problem for me, in that there was no
countdownnorkbw-coutdowndirectory in mynode_modulesdirectory.I ended up having to manually update this package's entry in package.json like so:
"kbw-countdown": "git://github.com/kbwood/countdown#2.1.0"in order to have it properly install.
I assume the best solution would be to register this project as a package on npm.
However if that's not an option, then renaming this repo so the repo name and the name in package.json matches up should solve the issue