# klicknotify

> Simple notification plugin for Klick* projects

Latest version **1.0.2** (published 2019-10-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install klicknotify
pnpm add klicknotify
yarn add klicknotify
bun add klicknotify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2019-10-22 |
| First published | 2016-11-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 37.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Vitor Nogueira |
| Maintainers | vitornogueira |
| Keywords | notify |

## Links

- npm: https://www.npmjs.com/package/klicknotify
- Repository: https://github.com/ignicaodigitalbr/klicknotify
- Homepage: https://github.com/ignicaodigitalbr/klicknotify#readme
- Issues: https://github.com/ignicaodigitalbr/klicknotify/issues
- npm.io page: https://npm.io/package/klicknotify

## Dependencies (1)

- [metapod](https://npm.io/package/metapod.md) 1.0.0-beta.3

## Recent versions

- 1.0.2 (latest) — 2019-10-22
- 1.0.1 — 2019-10-03
- 1.0.0 — 2016-11-22

## README

# Klicknotify

[![Build Status](https://travis-ci.org/ignicaodigitalbr/klicknotify.svg?branch=master)](https://travis-ci.org/ignicaodigitalbr/klicknotify)
[![npm](https://img.shields.io/npm/v/klicknotify.svg)](https://github.com/ignicaodigitalbr/klicknotify)

> Simple notification plugin for Klick* projects

## Install

Get it on npm:

```shell
npm install klicknotify --save
```

## Usage

```javascript
import Notify from 'klicknotify';

// Initialize plugin
Notify.init();

// Show notification
Notify.show({ type: 'success', message: 'Ok!' });
```

### Suported types

- success
- error
- warning

You can use the types as alias to show notification:

```javascript
Notify.success({ message: 'ok' });

Notify.error({ message: 'error' });

Notify.warning({ message: 'caution' });
```

---
_Source: https://npm.io/package/klicknotify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
