Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Express app continuously logs /sockjs-node/info

I have run the standard express generator like this:

express blog --hbs --git 

And then do an install and try run the app with:

cd blog
npm install
DEBUG=blog:* npm start

The app starts, and I can see the loading page in the browser, however I constantly get the following log lines being printed:

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 problem with the configuration? How do I rectify this?

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

like image 465
Daryn Avatar asked Nov 08 '22 17:11

Daryn


1 Answers

A simple reboot fixed the problem... it's likely that Daurens solution in the comments would also work, but I can't confirm that.

Just turn it off and on again...

like image 89
Daryn Avatar answered Nov 15 '22 06:11

Daryn