Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
common-log-format
Advanced tools
Pipe in common log format, get JSON out. Useful for converting web logs into a format more readily consumed by Javascript.
Standard log input such as:
127.0.0.1 - - [Wed, 11 Jun 2014 16:24:02 GMT] "GET / HTTP/1.1" 200 10305 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.76.4 (KHTML, like Gecko) Version/7.0.4 Safari/537.76.4"
127.0.0.1 - - [Wed, 11 Jun 2014 16:24:08 GMT] "GET /package.json HTTP/1.1" 304 - "http://localhost:8000/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.76.4 (KHTML, like Gecko) Version/7.0.4 Safari/537.76.4"
would be converted to
{
"remoteHost": "127.0.0.1",
"remoteLogName": "-",
"authUser": "-",
"date": "2014-06-11T16:24:02.000Z",
"request": "GET / HTTP/1.1",
"status": 200,
"bytes": 10305
}
{
"remoteHost": "127.0.0.1",
"remoteLogName": "-",
"authUser": "-",
"date": "2014-06-11T16:24:08.000Z",
"request": "GET /package.json HTTP/1.1",
"status": 304,
"bytes": null
}
$ npm install common-log-format
const clf = require('common-log-format')
process.stdin.pipe(clf()).pipe(process.stdout)
This will install the clf
command line tool:
$ npm install -g common-log-format
$ cat my-web-log.txt | clf
{"remoteHost":"127.0.0.1","remoteLogName":"-","authUser":"-","date":"2014-06-11T16:05:26.000Z","request":"GET /package.json HTTP/1.1","status":200,"bytes":733}
FAQs
Transform web logs (common log format) to JSON
The npm package common-log-format receives a total of 78,058 weekly downloads. As such, common-log-format popularity was classified as popular.
We found that common-log-format demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.