How to get and store client platform (os and type of browser with versions), device location and date and timeHow to decide when to use Node.js?Why use AJAX when WebSockets is available?What's the right way to work with many MySQL servers from Node.js simultaneously?SSL Certificate Alternatives for Server to Server CommunicationHow to differentiate between client devices?Running a node express server using webpack-dev-serverIncluding JSON in Node.js res.redirect()How to store variables in Google Cloud PlatformHow to store client date time in db to match with server timezone in nodejshow to prevent mobile web browser timeout? I want to keep client connected to socket.io server
Is Arc Length always irrational between two rational points?
The monorail explodes before I can get on it
QGIS Welcome page: What is 'pin to list' for?
What's a moment that's more impactful on a reread called?
What are the steps/action plan to introduce Test Automation in a company?
What would be the ideal melee weapon made of "Phase Metal"?
When did the Roman Empire fall according to contemporaries?
How can one write good dialogue in a story without sounding wooden?
Who Can Help Retag This?
Bishop game - python
Stuck Apple Mail - how to reset?
Why was hardware diversification an asset for the IBM PC ecosystem?
Keep milk (or milk alternative) for a day without a fridge
Can I use "candidate" as a verb?
As the Dungeon Master, how do I handle a player that insists on a specific class when I already know that choice will cause issues?
How to know whether a Tamron lens is compatible with Canon EOS 60D?
How do Windows version numbers work?
Are neural networks prone to catastrophic forgetting?
What's the point of this scene involving Flash Thompson at the airport?
Was adding milk to tea started to reduce employee tea break time?
Did any of the founding fathers anticipate Lysander Spooner's criticism of the constitution?
What's the minimum number of sensors for a hobby GPS waypoint-following UAV?
Why isn't there research to build a standard lunar, or Martian mobility platform?
Filtering fine silt/mud from water (not necessarily bacteria etc.)
How to get and store client platform (os and type of browser with versions), device location and date and time
How to decide when to use Node.js?Why use AJAX when WebSockets is available?What's the right way to work with many MySQL servers from Node.js simultaneously?SSL Certificate Alternatives for Server to Server CommunicationHow to differentiate between client devices?Running a node express server using webpack-dev-serverIncluding JSON in Node.js res.redirect()How to store variables in Google Cloud PlatformHow to store client date time in db to match with server timezone in nodejshow to prevent mobile web browser timeout? I want to keep client connected to socket.io server
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am new to Backend, started to learn backend with Node.js
Wondering how servers manage to get client details such as client platform (os and type of browser with versions), device location and date and time, IP address and all, to be store in the server for security purpose when a request have been made.
node.js express
add a comment |
I am new to Backend, started to learn backend with Node.js
Wondering how servers manage to get client details such as client platform (os and type of browser with versions), device location and date and time, IP address and all, to be store in the server for security purpose when a request have been made.
node.js express
Please let us know what have you tried yet.
– Nehal
Mar 26 at 4:37
I just googled to find an answer, but so far didn't find what I was looking for
– developer-rahul
Mar 26 at 4:48
@developer-rahul is your issue resolved by using answer below.
– Pankaj Jindal
Mar 29 at 6:15
add a comment |
I am new to Backend, started to learn backend with Node.js
Wondering how servers manage to get client details such as client platform (os and type of browser with versions), device location and date and time, IP address and all, to be store in the server for security purpose when a request have been made.
node.js express
I am new to Backend, started to learn backend with Node.js
Wondering how servers manage to get client details such as client platform (os and type of browser with versions), device location and date and time, IP address and all, to be store in the server for security purpose when a request have been made.
node.js express
node.js express
asked Mar 26 at 4:29
developer-rahuldeveloper-rahul
11 bronze badge
11 bronze badge
Please let us know what have you tried yet.
– Nehal
Mar 26 at 4:37
I just googled to find an answer, but so far didn't find what I was looking for
– developer-rahul
Mar 26 at 4:48
@developer-rahul is your issue resolved by using answer below.
– Pankaj Jindal
Mar 29 at 6:15
add a comment |
Please let us know what have you tried yet.
– Nehal
Mar 26 at 4:37
I just googled to find an answer, but so far didn't find what I was looking for
– developer-rahul
Mar 26 at 4:48
@developer-rahul is your issue resolved by using answer below.
– Pankaj Jindal
Mar 29 at 6:15
Please let us know what have you tried yet.
– Nehal
Mar 26 at 4:37
Please let us know what have you tried yet.
– Nehal
Mar 26 at 4:37
I just googled to find an answer, but so far didn't find what I was looking for
– developer-rahul
Mar 26 at 4:48
I just googled to find an answer, but so far didn't find what I was looking for
– developer-rahul
Mar 26 at 4:48
@developer-rahul is your issue resolved by using answer below.
– Pankaj Jindal
Mar 29 at 6:15
@developer-rahul is your issue resolved by using answer below.
– Pankaj Jindal
Mar 29 at 6:15
add a comment |
1 Answer
1
active
oldest
votes
You will not get the device location in a request unless frontend developer send it from frontend.
you can get these params in the request header => Ip address, user-agent, host, hostname, remoteAddress, pathname, method
e.g.
app.get('/', function(req, res, next)
console.log(req.headers);
);
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55349875%2fhow-to-get-and-store-client-platform-os-and-type-of-browser-with-versions-dev%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You will not get the device location in a request unless frontend developer send it from frontend.
you can get these params in the request header => Ip address, user-agent, host, hostname, remoteAddress, pathname, method
e.g.
app.get('/', function(req, res, next)
console.log(req.headers);
);
add a comment |
You will not get the device location in a request unless frontend developer send it from frontend.
you can get these params in the request header => Ip address, user-agent, host, hostname, remoteAddress, pathname, method
e.g.
app.get('/', function(req, res, next)
console.log(req.headers);
);
add a comment |
You will not get the device location in a request unless frontend developer send it from frontend.
you can get these params in the request header => Ip address, user-agent, host, hostname, remoteAddress, pathname, method
e.g.
app.get('/', function(req, res, next)
console.log(req.headers);
);
You will not get the device location in a request unless frontend developer send it from frontend.
you can get these params in the request header => Ip address, user-agent, host, hostname, remoteAddress, pathname, method
e.g.
app.get('/', function(req, res, next)
console.log(req.headers);
);
answered Mar 26 at 5:49
Pankaj JindalPankaj Jindal
901 gold badge2 silver badges10 bronze badges
901 gold badge2 silver badges10 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55349875%2fhow-to-get-and-store-client-platform-os-and-type-of-browser-with-versions-dev%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please let us know what have you tried yet.
– Nehal
Mar 26 at 4:37
I just googled to find an answer, but so far didn't find what I was looking for
– developer-rahul
Mar 26 at 4:48
@developer-rahul is your issue resolved by using answer below.
– Pankaj Jindal
Mar 29 at 6:15