Electron Builder Dmg On Linux

admin
Electron Builder Dmg On Linux 9,9/10 7671 votes

A complete solution to package and build a ready for distribution Electron, Proton Native app for macOS, Windows and Linux with “auto update” support out of the box.

The spare part has been supplied or after. Dmg travel corporation sa de cv meaning. Please contact your local DMG MORI office. The spare part is a new part with an identical warranty period and content. If you were to find a DMG MORI-supplied spare part for 20% less than our price (or more), will refund you 100% of the price difference.Just send the product’s offer- or order number, as well as the alternative offer to:Conditions. The alternative offer concerns a spare part that is 100% identical to ours.

See documentation on electron.build.

  • NPM packages management:
    • Native application dependencies compilation (including Yarn support).
    • Development dependencies are never included. You don't need to ignore them explicitly.
    • Two package.json structure is supported, but you are not forced to use it even if you have native production dependencies.
  • Code Signing on a CI server or development machine.
  • Auto Update ready application packaging.
  • Numerous target formats:
    • All platforms: 7z, zip, tar.xz, tar.7z, tar.lz, tar.gz, tar.bz2, dir (unpacked directory).
    • macOS: dmg, pkg, mas.
    • Linux: AppImage, snap, debian package (deb), rpm, freebsd, pacman, p5p, apk.
    • Windows: nsis (Installer), nsis-web (Web installer), portable (portable app without installation), AppX (Windows Store), MSI, Squirrel.Windows.
  • Publishing artifacts to GitHub Releases, Amazon S3, DigitalOcean Spaces and Bintray.
  • Advanced building:
    • Pack in a distributable format already packaged app.
    • Separate build steps.
    • Build and publish in parallel, using hard links on CI server to reduce IO and disk space usage.
    • electron-compile support (compile for release-time on the fly on build).
  • Docker images to build Electron app for Linux or Windows on any platform.
  • Proton Native support.
  • Downloads all required tools files on demand automatically (e.g. to code sign windows application, to make AppX), no need to setup.

Electron Builder Dmg On Linux Mac

QuestionAnswer
“I want to configure electron-builder”See options
“I have a question”Open an issue or join the chat
“I found a bug”Open an issue
“I want to support development”Donate
Electron

Real project example — onshape-desktop-shell.

Installation

I've spend my weekend experimenting with Electron and this caused a few questions and dilemmas in my head. I cloned the following Github repository to test with: electron-vue-typescript-starter This project uses electron-builder to build the project, based on the host platform you're developing on. Since I'm developing on Windows it builds an.exe file. Nov 30, 2016 Apple and, to a lesser extent, Linux have taken back a major portion of the marketplace. But this presents companies with a new challenge: how to create feature-rich apps for multiple operating systems without maintaining multiple codesets. Enter a product like Electron that is based on HTML and JavaScript.

Yarn is strongly recommended instead of npm.

yarn add electron-builder --dev

Quick Setup Guide

electron-webpack-quick-start is a recommended way to create a new Electron application. See Boilerplates.

  1. Specify the standard fields in the application package.json — name, description, version and author.

    Sep 23, 2019  Use these steps to set up a USB drive with a GPT partition: Open Start on Windows 10. Search for Command Prompt, right-click the top result and select the Run as Administrator option. Type the following command to open Diskpart and press Enter: diskpart. Jul 24, 2015  How to create USB installer for Mac OS X. Step 1: Download installer of OS X Yosemite, Mavericks, Mountain Lion, and Lion. Step 2: Format and make USB bootable. Step 3: Make USB OS X installer. Mac MS Office 2016 v15.22 + Update + License Installer. Download El Capitan.DMG – OS X. Dmg to usb mac os x. Method 2: How to Burn DMG to USB in Windows 10 (Bootable) Step 1 Install WizDMG. Download WizDMG to your Windows PC and install the program by following the setup instructions in the wizard. Step 2 Load DMG File into WizDMG. Step 3 Start Burning DMG to USB.

  2. Specify the build configuration in the package.json as follows:

    See all options. Option files to indicate which files should be packed in the final application, including the entry file, maybe required.

  3. Add icons.

  4. Add the scripts key to the development package.json:

    Then you can run yarn dist (to package in a distributable format (e.g. dmg, windows installer, deb package)) or yarn pack (only generates the package directory without really packaging it. This is useful for testing purposes).

    To ensure your native dependencies are always matched electron version, simply add script 'postinstall': 'electron-builder install-app-deps' to your package.json.

  5. If you have native addons of your own that are part of the application (not as a dependency), set nodeGypRebuild to true.

Please note that everything is packaged into an asar archive by default.

For an app that will be shipped to production, you should sign your application. See Where to buy code signing certificates.

Donate

We do this open source work in our free time. If you'd like us to invest more time on it, please donate. Donation can be used to increase some issue priority.

Sponsors

Electron - Create Single App for Windows, Linux, and macOS article
electronBuilder.js
constpackagejson=require('./package.json');
constbuilder=require('electron-builder');
constmimes=newMap();
mimes.set('exe','exe');
mimes.set('dmg','dmg');
mimes.set('zip','zip');
mimes.set('AppImage','x-executable');
//Development package.json, see https://goo.gl/5jVxoO
constdevMetadata=packagejson.electronBuilder;
//Application package.json
constappMetadata={
name: packagejson.name,
version: packagejson.version,
description: packagejson.description,
author: packagejson.author
};
functionbuildPromise(){
returnnewPromise((resolve,reject)=>{
builder
.build({projectDir: './', devMetadata, appMetadata })
.then(args=>{
constfilePath=args[0];
constfileName=filePath.substr(filePath.replace(//g,'/').lastIndexOf('/')+1);
constext=fileName.substr(fileName.lastIndexOf('.')+1);
letmimeType;
if(mimes.has(ext))
mimeType=`application/${mimes.get(ext)}, application/octet-stream`;
else
console.warn(`Unsupported file type '${ext}' in file '${filePath}'; mime type will be null`);
resolve({fileName, filePath, mimeType});
}).catch((error)=>{
console.error(error);
});
});
}
module.exports=buildPromise;
Electron Builder Dmg On Linux
electronBuilder.json
'electronBuilder': {
'build': {
'productName': 'Node Performance Measure',
'appId': 'EikosPartners.NodePerformanceMeasure',
'asar': false,
'win': {
'iconUrl': 'http://localhost:5000/images/eikos-logo-multi.ico',
'target': 'nsis'
},
'nsis': {
'oneClick': false,
'allowElevation': false
},
'linux': {
'target': 'AppImage',
'category': 'Development'
},
'mac': {
'target': 'dmg'
}
},
'directories': {
'output': 'electron/output',
'app': 'electron/app',
'buildResources': 'electron/buildResources'
}
}
electronInstall.html
<div>
<inputtype='button' value='Electron' onclick='downloadElectron();' />
<spanid='spanElectron'>Build Electron Version Installer for detected OS:</span>
</div>
<scripttype='text/javascript'>
varosdetect='UNKNOWN!';
varplatform=navigator.platform.toLowerCase();
if(platform.indexOf('win') >= 0)
osdetect='Windows';
elseif(platform.indexOf('mac') >= 0)
osdetect='MacOS';
elseif(platform.indexOf('linux') >= 0)
osdetect='Linux';
document.getElementById('spanElectron').innerHTML+=' <i><strong>'+osdetect+'</strong></i>';
functiondownloadElectron(){
varhostname=location.hostname;
varport=location.port.length>0 ? ':'+location.port : ';
varurl='http://'+hostname+port+'/electron'
window.open(url);
}
</script>

Linux Open Dmg File

electronRoute.js

Linux Open Dmg

//Install page for Electron Application
router.get('/electron',function(req,res,next){
electronBuilder()
.then(e=>fs.readFile(e.filePath,(err,data)=>{
res.setHeader('Content-Disposition',`attachment; filename='${e.fileName}'`);
res.setHeader('Content-type',e.mimeType);
res.send(data);
})).catch((error)=>{
console.error(error);
});
});

Install Dmg File On Linux

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment