electron-forge-publisher-oss
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Electron Forge Publisher OSS

Electron Forge Publisher OSS that publish your distributable Electron app artifacts to Aliyun Object Storage Service (OSS).

English | 简体中文

Features

  • ⚙️ Electron Forge publish to OSS.
  • ⚙️ Electron auto update.

🖥 Platform

  • macOS and Windows

📦 Install

npm install electron-forge-publisher-oss --save
yarn add electron-forge-publisher-oss

🔨 Usage

publishers config

// forge.config.js

module.exports = {
  // ...
  publishers: [
    {
      name: 'electron-forge-publisher-oss',
      config: {
        basePath: '/desktop',
        region: 'oss-cn-hangzhou',
        bucket: 'my-bucket',
        accessKeyId: 'xxx',
        accessKeySecret: 'xxx',
      }
    }
  ]
}

The basePath is the base path, and other parameters are the same as the OSS parameters.

auto update config

// main.js

import { autoUpdater } from 'electron'
import fetch from 'node-fetch'

const baseUrl = `https://my-bucket.oss-cn-zhangjiakou.aliyuncs.com/desktop/${platform}`

const release = await fetch(`${baseUrl}/release.json`)
const { currentRelease } = release

let url

if (process.platform === 'darwin') {
  url = `${baseUrl}/release.json`
} else {
  url = `${baseUrl}/${currentRelease}`
}

autoUpdater.setFeedURL({
  url,
  serverType: 'json'
})

autoUpdater.checkForUpdates()

See more >>

📋 Change Log

1.0.0

2022-11-07

  • 🆕 Electron Forge publish to OSS.
  • 🆕 Electron auto update.

Package Sidebar

Install

npm i electron-forge-publisher-oss

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

7.18 kB

Total Files

5

Last publish

Collaborators

  • zouyongzou