Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 494 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 494 Bytes

Mac-notify

Simpliest and slimmest notifier for Mac without dependecies. Only 39 lines.

Use it

Install:

$ npm i --save-dev mac-notify

In your code:

const notify = require('mac-notify');

notify();

notify('Oh yeah!!!'); // == { title: 'Oh yeah!!!' }

notify({
    title: 'Hey',
    subtitle: 'You are watching me!',
    message: 'Why do you do this?'
});

License

This is open-sourced software licensed under the MIT license.