Vsal
Vsal

Reputation: 83

Server side log files for angular 5

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

Answers (1)

Tiago
Tiago

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

Related Questions