Skip to content

Instantly share code, notes, and snippets.

@ninjascribble
Last active December 22, 2023 02:42
Show Gist options
  • Save ninjascribble/5119003 to your computer and use it in GitHub Desktop.
Save ninjascribble/5119003 to your computer and use it in GitHub Desktop.
Fetching the user-agent string from a request using either NodeJS or NodeJS + Express
/** Native NodeJS */
var http = require('http')
, server = http.createServer(function(req) {
console.log(req.headers['user-agent']);
});
server.listen(3000, 'localhost');
/** NodeJS with Express */
var express = require('express')
, http = require('http')
, app = express();
http.createServer(app).listen(3000);
app.get('/', function(req, res) {
console.log(req.get('user-agent'));
});
@dulanjanabandara
Copy link

Thanks guys!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment