Reputation: 83
I am relatively new to angular 5 and typescript. I want to create log files in angular 5.Is there any third party dependencies available ? Can it be possible by using angular 5?
Upvotes: 0
Views: 1082
Reputation: 21
In front end library, you can use console.log, console.error...
But if you want create a file log, you need do it in back end... Node.js, PHP, Java....
You can send the data log from the angular to you service in back end.
Upvotes: 2