Skip to content

NodeJS library to download files from manifests used by the Epic Games Launcher

License

Notifications You must be signed in to change notification settings

VastBlast/EpicManifestDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EpicManifestDownloader

NodeJS library to download files from manifests used by the Epic Games Launcher

Installation

npm i epic-manifest-downloader

Example

const { Downloader } = require('epic-manifest-downloader');

(async() => {
	const emd = new Downloader();
	await emd.start({
		manifest: './manifest.json',
		serverPath: '/Builds/Fortnite/CloudDir/ChunksV3',
		asyncOpts: 4
	});
	await emd.download("FortniteGame/Binaries/Win64/EasyAntiCheat/Launcher/SplashScreen.png", './splashscreen.png');
	//const splashBuffer = await emd.download("FortniteGame/Binaries/Win64/EasyAntiCheat/Launcher/SplashScreen.png");
})();

About

NodeJS library to download files from manifests used by the Epic Games Launcher

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published