Angular 5 Support
See original GitHub issueGetting the following warning when upgrading to Angular 5.0.0
npm WARN angular2-jwt@0.2.3 requires a peer of @angular/core@^2.0.0||^4.0.0 but none was installed.
npm WARN angular2-jwt@0.2.3 requires a peer of @angular/http@^2.0.0||^4.0.0 but none was installed.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:66
- Comments:39
Top Results From Across the Web
Angular versioning and releases
Actively supported versionslink. The following table provides the status for Angular versions under support. Version, Status, Released, Active ends, LTS ends ...
Read more >Angular - endoflife.date
Release Released Active Support
15 1 month and 1 week ago. (16 Nov 2022) Ends in 4 months and 3 weeks. (18 M...
14 (...
Read more >Angular 5 Tutorial: Guide to Your First Angular 5 App - Toptal
Build a notes application from scratch for your first Angular 5 app. Learn Angular CLI, use RxJS, implement Firebase as the back-end, and...
Read more >Angular Version List & History – Angular 2,4,5,6,7,8 - Guru99
Angular 4 is a web application framework for building JavaScript applications. It supports TypeScript, which compiles to JavaScript and displays ...
Read more >Angular 5 Features and Benefits — All You Need to Know ...
Angular 5.0 comes with Angular Universal State Transfer API and DOM support for sharing code between server and client-side versions of an application....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
In my
app.module
:In
authentication.service.ts
In the
auth-guard.service.ts
and in the
app.routing.ts
we have acanActivate: [AuthGuard]
Hope that helps 😃
So, I just came across this. Only place I’ve ever seen it:
Taken from the top of this page: https://auth0.com/blog/introducing-angular2-jwt-a-library-for-angular2-authentication/
apparently angular2-jwt is deprecated and auth0 did a pretty terrible job of letting users know that. If you follow this tutorial: https://auth0.com/blog/real-world-angular-series-part-1/ and look at its source code on github, you can see how they use JWTs without this library. I’m going to take a stab at removing angular2-jwt from my code and see if I can get it working with the new HttpClient