
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@mtdxc/electron-forge-publisher-oss
Advanced tools
Electron Forge Publisher that publish your distributable Electron app artifacts to Aliyun Object Storage Service(OSS).
Electron Forge Publisher OSS that publish your distributable Electron app artifacts to Aliyun Object Storage Service (OSS).
English | 简体中文
npm install @mtdxc/electron-forge-publisher-oss --save-dev
yarn add @mtdxc/electron-forge-publisher-oss --dev
// forge.config.js
module.exports = {
// ...
publishers: [
{
name: '@mtdxc/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.
// 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()
2022-11-07
FAQs
Electron Forge Publisher that publish your distributable Electron app artifacts to Aliyun Object Storage Service(OSS).
We found that @mtdxc/electron-forge-publisher-oss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.