up

1.0.2 • Public • Published

Up application companion library for Node and the browser, providing out of the box solutions for authentication, logging, messaging and more.

Installation

$ npm install up

Logging

Up supports structured logging in the form of JSON written to stdout. To make this process a bit cleaner, up.js provides a Logger as shown here:

const { Logger } = require('up')
const log = new Logger()
 
log.error('user login attempt failed', { user: 'tobi' })
log.info('user login', { user: 'tobi' })
log.info('user logout', { user: 'tobi' })

The following severity levels are available:

  • debug
  • info
  • warn
  • error
  • fatal

Build Status

/up/

    Package Sidebar

    Install

    npm i up

    Weekly Downloads

    2,240

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    201 kB

    Total Files

    9

    Last publish

    Collaborators

    • tjholowaychuk