npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

zlogjs-http-logger

v0.0.11

Published

Log http request, and responses and can be used as a plugin for zlogjs-adapter

Downloads

33

Readme

zlogjs-http-logger

log http request, response, locally or on a remote server.

Join the chat at https://gitter.im/Emallates/zlogjs-http-logger Version Build Status ISSUES FORKS STARS Downloads License

##DESCRIPTION zlogjs-http-logger is a plugin for zlogjs-adapter to log native http server requests and responses for nodejs applications. log http request, response, locally or on a remote server.

Table of Contents

  1. Installation
  2. Configuration
  3. Log
  4. Issues and Suggestions
  5. License

Installation

npm install zlogjs-http-logger --save

Configuration

As this logger is a plugin of zlogjs-adapter, you need to install that first. To log locally just put the value of mode local otherwise remote.

var config = {
	collections:{
		adapter:{
			host:'host', port:'port',
			adapter:require('zlogjs-adapter'), plugin:'zlogjs-http-logger',
			appId:'appid', apiKey:'apikey',
			mode:'remote'
		}
	}
};

Log

To start using this logger you need to construct it from zlogjs-adapter and enoa-client. Then you need to include it inside the http server of your application. Parameters request, response are the same objects you need to pass and from these parameters false option will stay as it is if you are using this logger on exit point of every request.

Global

var logger = require('enoa-client')(config).adapter.logger;
http.createServer(function (req, res, next) {
	logger(req, res, res.body, false, CallbackFn);
});

Specific

logger(req, res, res.body, true, CallbackFn);

Issues and Suggestions

This is the first version of zlogjs-http-logger, so we are looking forward to make this logger perfect. if there is any issue or you want to add new feature to the logger please feel free to raise it.

License

MIT © 2016 Emallates