@wfcd/profile-parser
v1.2.3
Published
Parser for Digital Extreme's profile data
Downloads
358
Readme
profile-parser
Parse warframe profile data into useable javascript objects.
Documentation
You can find the documentation here
Installation
$ npm i -S profile-parser
Example usage
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);