I like to install module AngularDevise (https://github.com/cloudspace/angular_devise) into an ionic project. But the module is not in the npm registry. So far I've tried several hints suggested in How to install a private NPM module without my own registry?.
The following command
npm install -S "https://github.com/cloudspace/angular_devise.git"
seems to modify the package.json file:
diff --git a/mobile/package.json b/mobile/package.json
@@ -3,11 +3,12 @@
"version": "1.1.1",
"description": "mobile: An Ionic project",
"dependencies": {
+ "AngularDevise": "git+https://github.com/cloudspace/angular_devise.git",
"gulp": "^3.5.6",
Still, I don't see any files from AngularDevise installed in the local project directory. What is the right way to install the *.js files locally?
Any suggestion is greatly appreciated.