My implementation of the Header Parser API project from freeCodeCamp.
Implements the following User story:
- I can get the IP address, language and operating system for my browser.
npm install
node server.js
http://localhost:8080/parser
{ "ip": "::1", "lang": "en-US", "os": "Linux 64" }
Note: Example IP address is IPv6.
- express-useragent is used to get the operating system.
- Since this was a fairly simple project, I experimented by adding jade and sass (using node-sass-middleware).