nwitch-base64

1.0.0 • Public • Published

nwitch-base64

Build Status Dependency Status

nwitch (and slate-irc) plugin for base64 encoding and decoding.

05:34 <KenanY> !base64 encode Hello World
05:34 <nwitch> KenanY: SGVsbG8gV29ybGQ=
05:35 <KenanY> !base64 decode SGVsbG8gV29ybGQ=
05:35 <nwitch> KenanY: Hello World

Example

As a nwitch plugin (using config.toml):

[plugins]
nwitch-base64 = true

Or through nwitch's API:

var Nwitch = require('nwitch');
var nwitchBase64 = require('nwitch-base64');
 
var nwitch = new Nwitch({
  irc: {
    address: 'irc.freenode.org',
    port: 6667
  }
});
 
nwitch.use(nwitchBase64());

Technically, all nwitch plugins are just slate-irc plugins, so you could also use this as a slate-irc plugin:

var net = require('net');
var irc = require('slate-irc');
var nwitchBase64 = require('nwitch-base64');
 
var stream = net.connect({
  port: 6667,
  host: 'irc.freenode.org'
});
 
var client = irc(stream);
client.use(nwitchBase64());

Installation

$ npm install nwitch-base64

API

var nwitchBase64 = require('nwitch-base64');

nwitchBase64()

Returns a function that accepts an instance of slate-irc.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    0
  • 0.1.0
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i nwitch-base64

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • kenan