node-notifier: 基于nodejs 的消息通知

一个nodejs里的消息通知模块,学习一下
更新于: 2023-04-28 21:06:10

安装

yarn add node-notifier

基本使用

const notifier = require('node-notifier');
// String
notifier.notify('Message');

// Object
notifier.notify({
  title: 'My notification',
  message: 'Hello, there!'
});

参考