What does GET / bla - - ms - - mean in the NodeJs console?

When I go to a page /blain my NodeJS application, the console displays

GET /bla - - ms - -

In words (for simpler Google searches) dash dash ms dash dash.

What does it mean?

+4
source share
1 answer

This is the result of morgan , the HTTP request protocol middleware for node.js.

It logs all requests by default in the console. Depending on your configurations, it displays various data from the request.

If you use the default format (dev), the data displayed is:

:method :url :status :response-time ms - :res[content-length]
+2
source

All Articles