Socket
Socket
Sign inDemoInstall

pingpong-nickname

Package Overview
Dependencies
50
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pingpong-nickname

A npm package for an awesome ping pong nickname


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
4.69 MB
Created
Weekly downloads
 

Readme

Source

Build Status npm version

pingpong-nickname

A npm package for an awesome ping pong nickname

Getting Started

Create a new instance of PingPongNickname passing the configuration options and optional default request options:

var PingPongNickname = require('pingpong-nickname');

var pingPongNickname = new PingPongNickname({ host: 'yourhost.com', port: 3000, protocol: 'http' }, { auth: { user: 'user', pass: 'pass', sendImmediately: true } });

The client must be created with a host or an error will be thrown.

Using the client

Call pingPongNickname.nickname(callback) with the following parameters:

@param {function} callback A callback function. Will be sent the following params:
    @param {string} error An error
    @param {object} response The server response
    @param {object} body The body of the response

An example:

// Get a new nickname
pingPongNickname.nickname(function(error, response, body) {
    if (error) {
        console.log(error);
    } else {
        console.log(body);
    }
});

Testing

Unit tests

To run all unit tests within the package run:

npm test

Code Style / Lint Checks

To run jshint and jscs checks within the package run:

npm run lint

FAQs

Last updated on 01 Sep 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc