Skip to content

Latest commit

 

History

History

slack-channel-active-reminder

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

slack-channel-active-reminder

npm version styled with prettier

Install

npm install slack-channel-active-reminder

Usage

const { CronJob } = require("cron");
const Reminder = require("slack-channel-active-reminder").default;

const reminder = new Reminder();

const job = new CronJob({
  cronTime: "0 00 18 * * 1-5",
  onTick: function () {
    reminder.postRemindMessage();
  },
  start: false,
  timeZone: "Asia/Tokyo",
});
job.start();

License

MIT