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-express-logger

v0.0.14

Published

log express requests and responses locally or on a remote server.

Downloads

16

Readme

zlogjs-express-logger

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

Join the chat at https://gitter.im/Emallates/zlogjs-express-logger Version Build StatusISSUES FORKS STARS DownloadsLicense

##DESCRIPTION zlogjs-express-logger is a plugin for zlogjs-adapter to log native http server requests and responses.

Table of Contents

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

Installation

npm install zlogjs-express-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-express-logger',
			appId:'appid', apiKey:'apikey',
			mode:'remote'
		}
	}
};

Skip

var config = {
	collections:{
		adapter:{
			host:'host', port:'port',
			adapter:require('zlogjs-adapter'), plugin:'zlogjs-express-logger',
			appId:'appid', apiKey:'apikey',
			mode:'remote',
			SKIP:{
			  '/api1':true, 
			  '/api2':{CODE:204},
			  '/api4':{METHOD:'get'},
			  '/api6':{CODE:{'>':200,'<':300}}
			},
			SKIP_CODE:400
		}
	}
};
 

Tags

var config = {
	collections:{
		adapter:{
		host:'host', port:'port',
		adapter:require('zlogjs-adapter'), plugin:'zlogjs-express-logger',
		appId:'appid', apiKey:'apikey',
		mode:'remote',
			TAGS:{
				"/api/a":"tag1",
				"/api/b":"tag1:tvalue",
				"/api/c":["tag1:tvalue","tag2:tvalue"],
				"/api/d":["tag1","tag2"],
				"/api/e":{"tag1":"tvalue","tag2":"tvalue"},
				"splitter":":"
			}
		}
	}
};

Log

To start using this logger you need to construct it from zlogjs-adapter and enoa-client. Then you need to include it as a middleware of the express application.

Global

var logger = require('enoa-client')(config).adapter.logger;
express_app.use(logger);

Specific

you need to add an additional header x-man-zlogjs to the request object if you manually log something

//req.headers['x-man-zlogjs'] = true;
logger(req, res, CallbackFn);

Issues and Suggestions

This is the first version of zlogjs-express-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