npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

gw2e-item-attributes

v1.2.7

Published

Parse attributes of items and characters from the official gw2 api

Downloads

1,276

Readme

item-attributes

Build Status Coverage Status

Parse attributes of items and characters from the official gw2 api

This is part of gw2efficiency. Please report all issues in the central repository.

Install

npm install gw2e-item-attributes

This module can be used for Node.js as well as browsers using Browserify.

Usage

Parsing items

You can parse the attributes of a single item or an array of items using the parseItems method. This method accepts weapons, armor, back items, trinkets and upgrades of any rarity.

The following attributes can be included in the object:

  • Power
  • Toughness
  • Vitality
  • Precision
  • Ferocity
  • Armor
  • ConditionDamage
  • ConditionDuration (percentage)
  • HealingPower
  • BoonDuration (percentage)
  • AgonyResistance
  • Concentration
  • Expertise
import {parseItems} from 'gw2e-item-attributes'

let items = [
  {
    id: 38422,
    name: 'Giver\'s Pearl Quarterstaff',
    details: {
      defense: 0,
      infix_upgrade: {
        buff: {skill_id: 25542, description: '+20% Condition Duration'},
        attributes: [{attribute: 'Vitality', modifier: 171}, {attribute: 'Precision', modifier: 171}]
      }
    }
  }  
  // ...
]

let attributes = parseItems(items)
// -> {Vitality: 171, Precision: 171, ConditionDuration: 0.2}

Parsing characters / secondary attributes

You can additionally parse characters and secondary attributes using the parseCharacter method. This adds the base stats of a character at this level and additionally calculates:

  • Armor including Toughness
  • CritChance from Precision (percentage)
  • Health from Vitality
  • CritDamage from Ferocity (percentage)
  • ConditionDuration including Expertise (percentage)
  • BoonDuration including Concentration (percentage)

Make sure that you pass in all equipped items of the character, including infusions and upgrades. For runes, pass in the rune as many times as it is equipped (e.g. 6 times for a full set)

import {parseCharacter} from 'gw2e-item-attributes'

let level = 80
// The profession as given from the API, one of Elementalist, Guardian, 
// Thief, Engineer, Ranger, Mesmer, Revenant, Warrior or Necromancer
let profession = 'Elementalist'
let items = [/* ... */]

let attributes = parseCharacter(level, profession, items)
// {
//   Power: 123,
//   Toughness: 123,
//   Vitality: 123,
//   Precision: 123,
//   Ferocity: 123,
//   Armor: 123,
//   ConditionDamage: 123,
//   ConditionDuration: 0.5,
//   HealingPower: 123,
//   BoonDuration: 0.5,
//   AgonyResistance: 123,
//   Concentration: 123,
//   Expertise: 123,
//   CritChance: 0.5,
//   Health: 12345,
//   CritDamage: 1.5
// }

Attribute combination names

This module includes a helper function parseCombination to easily distinct different attribute combinations by name (e.g. "Berserker's"). If no name could be found it will return false.

import {parseCombination} from 'gw2e-item-attributes'

let item = { /* item from the official API */ }

let attributes = attributeParsing.parseItems(items)
// -> {Power: 85, Precision: 126, Ferocity: 85}

let text = parseCombination(attributes)
// -> {prefix: "Assassin's", suffix: 'of the Assassin', trinket: 'Opal', ascended: ["Saphir's", "Soros's"]}

You can also find out the major and minor attributes if you know the combination prefix:

import {combinationAttributes} from 'gw2e-item-attributes'

let attributes = combinationAttributes("Assassin's")
// -> [['Precision'], ['Power', 'Ferocity']]

Tests

npm test

Licence

MIT