# node-notifier 系统提示框

# 介绍

跨平台的原生消息提示。

演示

# 示例

安装:

npm i node-notifier

代码:

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

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

# 参考

本章目录