angular2-localstorage
angular2-localstorage copied to clipboard
zone.js@^0.6.25 requirement not met
1st I tried to install as I use to, then, I get an error in import { WebStorageModule, LocalStorageService } from "angular2-localstorage";
as it angular2-localstorage
was not found.
Installed typings
as someone suggested.
Installed by using npm install marcj/angular2-localstorage
Now, a new issue,
$ npm install marcj/angular2-localstorage
> [email protected] postinstall /Users/fafa/Develop/benjamin/frontend/node_modules/angular2-localstorage
> typings install
typings WARN deprecated 11/21/2016: "registry:dt/node#6.0.0+20160921192128" is deprecated (updated, replaced or removed)
└── node (global)
[email protected] /Users/fafa/Develop/benjamin/frontend
├── [email protected] (git://github.com/marcj/angular2-localstorage.git#85b25caca6eb969632e258fa5587e85e871b38b6)
└── UNMET PEER DEPENDENCY [email protected]
npm WARN [email protected] requires a peer of zone.js@^0.6.25 but none was installed.
$ npm install
npm WARN [email protected] requires a peer of zone.js@^0.6.25 but none was installed.
I do have a package.json
with
"dependencies": {
...
"zone.js": "^0.7.2"
},
Any ideas?
pst: i also did npm cache clean
and rm -rf dist node_modules
before npm install
again.
I ran into a similar problem. When I first did the install with "npm install --save angular2-localstorage" I got an error on the install
npm ERR! [email protected] postinstall: typings install
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script 'typings install'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the angular2-localstorage package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! typings install
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs angular2-localstorage
I managed to fix this by doing "npm install typings -global"... and then retried the install and it worked.
But then when I go to use it with: import { WebStorageModel, LocalStorageService } from 'angular2-localstorage';
I get: " Cannot find module 'angular2-localstorage'."
@dogofpavlov try rm -rf dist node_modules
and then npm install
my guess is that you will see my troubling results...
@genuinefafa yes you are right, i have the same issue as you. I have since started using "angular-2-local-storage" instead, as I really don't have time to wait for a fix .
I'll check it out! Thanks!
On Feb 27, 2017, at 12:35, dogofpavlov [email protected] wrote:
@genuinefafa yes you are right, i have the same issue as you. I have since started using "angular-2-local-storage" instead, as I really don't have time to wait for a fix .
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.