@ribbon-studios/guild-wars-2
v1.12.1
Published
The Guild Wars 2 API
Downloads
5
Readme
[!IMPORTANT]
This repository is currently a WIP and as such isn't finished.
@ribbon-studios/guild-wars-2 🦁
Access all of the Guild Wars 2 APIs with typescript support!
Quick Start
import { GuildWars2, Schema } from '@ribbon-studios/guild-wars-2';
const gw2 = new GuildWars2({
access_token: '<my-super-secret-api-key>',
v: Schema.V0,
});
export async function example(token: string) {
await gw2.v1.mapNames();
await gw2.v2.minis.list({
ids: 'all',
});
}