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 🙏

© 2024 – Pkg Stats / Ryan Hefner

pk6parse

v0.10.18

Published

Extracts data from .pk6 files

Downloads

21

Readme

pk6parse

Parses a .pk6 file into a javascript object. This also works in the browser; see here for an example.

Installation

To install:

npm install pk6parse
var pk6parse = require('pk6parse');

API

  • pk6parse.parseBuffer(buf, [options])
  • buf (Buffer): A Buffer in .pk6 format
  • options (object): If options.parseNames is set to true, assigns readable names to the returned data in addition to property IDs.
  • Returns (object): An object containing the parsed information from the buffer.

  • pk6parse.parseFile(filepath, [options])
  • filepath (string): The path to a .pk6 file
  • Parses the pk6 data in a given file. This is an alias for:
pk6parse.parseBuffer(require('fs').readFileSync(filepath, options))

While most of the information in the parsed object will be in a readable format, some information (such as move data) will still be represented by an ID Number. This is because the string representation of this data can vary depending on game and language. The data can be exposed by setting options.parseNames to true, or by using these helper functions:

  • pk6parse.assignReadableNames(data)
  • data (object) Parsed data, in the format of data returned by pk6parse.parseBuffer
  • Mutates the given data object by all supported "name" properties to it. For example, the abilityName property will be added based on the existing abilityId property. Note that future updates may support more names than are currently available.
  • Returns (object): The mutated object

  • pk6parse.getPokemonData(dexNo)
  • dexNo (number): The national dex number of the desired species
  • Returns (object): An object containing various information on this species, such as its name, egg groups, etc.

  • pk6parse.getItemData(itemId)
  • itemId (number): The item ID of the desired item
  • Returns (object): An object containing information about the given item

  • pk6parse.getMoveData(moveId)
  • moveId (number): The move ID of the desired move
  • Returns (object): An object containing information about the given move

  • pk6parse.getAbilityData(abilityId)
  • abilityId (number): The ability ID of the desired ability
  • Returns (object): An object containing information about the given ability

  • pk6parse.getNatureData(natureId)
  • natureId (number): The nature ID of the desired nature
  • Returns (object): An object containing information about the given nature

  • pk6parse.getMedalData(medalData)
  • medalData (number): A bitmap representing data on super training medals. In most cases, this will be directly passed from the medalData property which is exposed from a parsed pk6 file.
  • Returns (Array[String]): An array of medal names represented by the bitmap

  • pk6parse.getRibbonData(ribbonData)
  • ribbonData (number): A bitmap representing data on super training medals. In most cases, this will be directly passed from the ribbonData property which is exposed from a parsed pk6 file.
  • Returns (Array[String]): An array of ribbon names represented by the bitmap

Most of the raw data for these functions was collected from Pokeapi, without which this project would have been substantially harder.