Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 646 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 646 Bytes

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");
})();