Skip to content

Heroic-Games-Launcher/heroic-wine-downloader

Folders and files

NameName
Last commit message
Last commit date
Jan 11, 2022
Jan 6, 2022
Feb 18, 2022
Jan 31, 2022
Jan 6, 2022
Jan 6, 2022
Jan 6, 2022
Jan 6, 2022
Dec 28, 2021
Jan 14, 2022
Jan 6, 2022
Feb 18, 2022
Jan 6, 2022
Jan 6, 2022

Repository files navigation

heroic-wine-downloader

This library is a helper to fetch and download available wine binaries (e.g. Wine-GE, Proton-GE, Wine-Lutris, ...).

Following tools should be installed on the system, to make the package fully functional:

  • curl: needed to download the binary archive
  • tar: needed to unpack the binary archive
  • du (optional): needed to get the unpacked binary size on the disk

Install

$ npm install heroic-wine-downloader

or

$ yarn add heroic-wine-downloader

Usage

import {
  getAvailableVersions,
  Repository,
  VersionInfo,
  State,
  ProgressInfo
} from 'heroic-wine-downloader'

// get binaries of Wine GE
getAvailableVersions({ repositorys: [Repository.WINEGE] })
  .then((versions: VersionInfo[]) => {
    // install newest
    installVersion({
      versionInfo: versions[0],
      installDir: '<valid-path>',
      onProgress: (state: State, progress: ProgressInfo => {
        console.log(
          `onProgress: state = ${state}, progress = ${progress.percentage}`
        )
      })
      .then((response: {version: VersionInfo, installDir: string}) => console.log(response.installDir))
      .catch((error: Error) => console.log(error.message))
  })
  .catch((error: Error) => {
    console.error(error.message)
  })