Express app registers / sockjs continuously - node / info

I run the standard express generator as follows:

express blog --hbs --git 

And then complete the installation and try to run the application with:

 cd blog npm install DEBUG=blog:* npm start 

The application starts up and I see the download page in the browser, however, I constantly get the following log lines:

 GET /sockjs-node/info?t=1459184976170 404 54.682 ms - 1060 GET /sockjs-node/info?t=1459184981971 404 8.142 ms - 1060 

Why is this, is there a configuration problem? How to fix this?

Express Generator - http://expressjs.com/en/starter/generator.html

+5
source share
1 answer

A simple reboot fixed the problem ... most likely the Daurens solution in the comments will also work, but I cannot confirm this.

Just turn it off and on again ...

+1
source

Source: https://habr.com/ru/post/1245929/


All Articles