Electron Windows Notifications 项目教程

Electron Windows Notifications 项目教程

electron-windows-notifications:zap: Send native Windows WinRT notifications from Electron项目地址:https://gitcode.com/gh_mirrors/el/electron-windows-notifications

1. 项目的目录结构及介绍

Electron Windows Notifications 项目的目录结构如下:

electron-windows-notifications/
├── examples/
│   ├── basic/
│   └── interactive/
├── lib/
│   ├── index.js
│   └── utils.js
├── node_modules/
├── test/
├── .gitignore
├── .npmignore
├── .travis.yml
├── LICENSE
├── README.md
├── package.json
└── yarn.lock

目录介绍

  • examples/: 包含项目的示例代码,分为 basicinteractive 两个子目录,分别展示了基本通知和交互式通知的实现。
  • lib/: 包含项目的主要代码文件,其中 index.js 是入口文件,utils.js 包含一些辅助函数。
  • node_modules/: 存放项目依赖的第三方模块。
  • test/: 包含项目的测试文件。
  • .gitignore: 指定 Git 版本控制系统忽略的文件和目录。
  • .npmignore: 指定 npm 发布时忽略的文件和目录。
  • .travis.yml: Travis CI 的配置文件。
  • LICENSE: 项目的许可证文件。
  • README.md: 项目的说明文档。
  • package.json: 项目的配置文件,包含项目的依赖、脚本等信息。
  • yarn.lock: Yarn 包管理器的锁文件,确保依赖版本一致。

2. 项目的启动文件介绍

项目的启动文件位于 lib/index.js,这是 Electron Windows Notifications 的主要入口文件。该文件导出了用于发送 Windows 通知的功能。

// lib/index.js
const { EventEmitter } = require('events');
const path = require('path');
const { ToastNotification, TileNotification } = require('electron-windows-notifications');

class NotificationEmitter extends EventEmitter {
  constructor() {
    super();
  }

  sendToastNotification(options) {
    const toast = new ToastNotification(options);
    toast.on('activated', () => this.emit('activated', toast));
    toast.on('dismissed', () => this.emit('dismissed', toast));
    toast.show();
  }

  sendTileNotification(options) {
    const tile = new TileNotification(options);
    tile.show();
  }
}

module.exports = new NotificationEmitter();

启动文件介绍

  • NotificationEmitter 类: 继承自 EventEmitter,用于发送和管理通知。
  • sendToastNotification 方法: 用于发送 Toast 通知,支持事件监听。
  • sendTileNotification 方法: 用于发送 Tile 通知。

3. 项目的配置文件介绍

项目的配置文件是 package.json,包含了项目的基本信息、依赖、脚本等。

{
  "name": "electron-windows-notifications",
  "version": "3.0.3",
  "description": "Native Windows notifications for Electron using NodeRT",
  "main": "lib/index.js",
  "scripts": {
    "test": "mocha --recursive",
    "lint": "eslint ."
  },
  "keywords": [
    "electron",
    "windows",
    "notifications",
    "toast",
    "tile",
    "NodeRT"
  ],
  "author": "Felix Rieseberg <felix@felixrieseberg.com>",
  "license": "MIT",
  "dependencies": {
    "electron-windows-interactive-notifications": "^0.3.0",
    "node-addon-api": "^3.0.0",
    "node-gyp-build": "^4.2.0"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "eslint": "^7.1.0",
    "mocha": "^7.2.0"
  }
}

配置文件介绍

  • name: 项目名称。
  • version: 项目版本。
  • description: 项目描述。
  • main: 项目入口文件。
  • scripts: 包含项目的脚本命令,如测试 (test) 和代码检查 (lint)。
  • keywords: 项目的关键词。
  • author:

electron-windows-notifications:zap: Send native Windows WinRT notifications from Electron项目地址:https://gitcode.com/gh_mirrors/el/electron-windows-notifications

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

邴治盟Walton

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值