Parse warframe profile data into useable javascript objects.
You can find the documentation here
$ npm i -S @wfcd/profile-parser
import { ProfileParser } from 'profile-parser';
const profileData = await fetch('https://content.warframe.com/dynamic/getProfileViewingData.php?n=${username}');
const user = new ProfileParser(await profileData.text());
console.log(user.profile.displayName);