joystick icon indicating copy to clipboard operation
joystick copied to clipboard

Add a notifications API for triggering the send of notifications via email, SMS, etc.

Open rglover opened this issue 2 years ago • 0 comments

I always rewrite this on projects and it'd be helpful to just have a pattern. Something like this:

import joystick from '@joystick.js/node';

joystick.app({
  notifications: {
    providers: {
       email: {},
       sms: {},
    },
  },
});

Another one of those "think about it" problems because we want to avoid bogging down the package with dependencies.

rglover avatar Jul 18 '23 02:07 rglover