# holler
**Repository Path**: mirrors_leecade/holler
## Basic Information
- **Project Name**: holler
- **Description**: real-time, in-app notifications for web and mobile via the command line
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-09
- **Last Updated**: 2026-02-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[Holler.js](http://bitpshr.info/holler)
=================
real-time, in-app notifications for web and mobile via the command line. [see it in action](http://bitpshr.info/holler)
##Usage
Sending notifications with Holler is as easy as four steps:
###1. Install a module
Holler is built with Node and is distributed as an npm module. If you don't have Node yet, install the hell out of it. Next we just install holler:
```console
npm install holler
```
###2. Add a script tag
On the client, Holler can be easily configured to use a specific host and port regardless of the app's http server. This is done via a global hollerConfig object. The holler-client.js script tag should then be included:
```html
```
###3. Start a server
The server can be started with an optional port. If no port is specified, it will be defaulted to 1337.
```console
holler-server 1337
```
###4. Holler stuff
Show notifications to all users currently using your app in real-time using holler.js. Notifications use Alertify so they look nice and sexy.
* Log Messages

```console
holler http://yourServerUrl:port log "This is a standard log message."
```
* Success Messages

```console
holler http://yourServerUrl:port success "This is a success message."
```
* Error Messages

```console
holler http://yourServerUrl:port error "This is an error message."
```
##Going forward
I definitely need to address the following:
* Security: need a way to lock down notifications so that only auth'd users can send them
* Simplicity: need a way to simplify the holler.js command (it's ugly to pass in 3 options)
##License
[WTFPL](http://sam.zoy.org/wtfpl/)