0.1.1 • Published 7 years ago

splush v0.1.1

Weekly downloads
5
License
MIT
Repository
-
Last release
7 years ago

splush npm

javascript driver for splush

splush-web

getting started

click here!

usage

cli

splush config (thing) (value)

configures (thing) with the provided (value)

thing's to configure:

  • key - key used for pushing notifications for a given device, get it from here
  • upstream - (default https://splush.nikerino.com) - configures the endpoint to push to, useful if you're running your own splush node

example: splush config key MassiveGroundLeafUnder

splush push (optional: msg)

Creates a new push notification, optionally with the given (msg).

example: splush push Good morning!

splush help (command)

Prints this text.

module

// reads config from ~/.splush.json
const splush = require('splush')()

// can be passed a custom key
const splush = require('splush')('MassiveGroundLeafUnder')

// ...or an options object
const splush = require('splush')({
	key: 'MassiveGroundLeafUnder',
    upstream: 'http://localhost:3030'
})

splush.push('hello!')

splush([options])

Spawns a new splush instance, options are read from ~/.splush.json if not provided.

.push([msg])

Creates a new push notification, optionally with the given (msg).

install

cli

# npm install -g splush

module

$ npm install --save splush

license

MIT

0.1.1

7 years ago

0.1.0

7 years ago