Test if a URL uses Node.js
dotheyusenode.herokuapp.com
Test if a URL uses Node.js
1–10 of 34 posts
Re: Test if a URL uses Node.js
#2Re: Test if a URL uses Node.js
#3If you can't tell if airbnb uses node, I'm note sure it works at all.
Re: Test if a URL uses Node.js
#4If you can't tell if airbnb uses node, I'm note sure it works at all.
I guess it's just checking for some header,like express has a special header... by the way, framework authors, please refrain from doing stuffs like that. The framework i use is nobody's business but mine.
Re: Test if a URL uses Node.js
#5If you can't tell if airbnb uses node, I'm note sure it works at all.
I guess it's just checking for some header,like express has a special header... by the way, framework authors, please refrain from doing stuffs like that. The framework i use is nobody's business but mine.
Re: Test if a URL uses Node.js
#6If you can't tell if airbnb uses node, I'm note sure it works at all.
I guess it's just checking for some header,like express has a special header... by the way, framework authors, please refrain from doing stuffs like that. The framework i use is nobody's business but mine.
And also, yes.. it checks headers (just threw up an Express project and got this: http://i.imgur.com/xpyfv0C.png)
Re: Test if a URL uses Node.js
#7[1] http://stackoverflow.com/questions/5867199/cant-get-rid-of-h...
Re: Test if a URL uses Node.js
#8"Maybe, but we cannot tell"
Re: Test if a URL uses Node.js
#9Pretty pointless since all this does is check the x-powered-by HTTP response header (which can be turned off[1]). If this captured other web frameworks as well (eg PHP also outputs to x-powered-by in it's default config) then this might be a little less pointless - but even then, most production sites should have those information leaks sealed anyway (you don't actually improve security, but at least it slows the att…
I thought you need a framework (like Express.js) and then to not have turned off the header.