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

@pkmn/protocol

v0.6.24

Published

Parsing logic for Pokémon Showdown's PROTOCOL and SIM-PROTOCOL

Downloads

974

Readme

@pkmn/protocol

Test Status License npm version

Parsing logic for Pokémon Showdown's PROTOCOL and SIM-PROTOCOL.

This package converts Pokémon Showdown's text protocols into typed object respresentations for ease of use.

Installation

$ npm install @pkmn/protocol

Alternatively, as detailed below, if you are using @pkmn/protocol in the browser and want a convenient way to get started, simply depend on a transpiled and minified version via unpkg:

<script src="https://unpkg.com/@pkmn/protocol"></script>

Usage

Handler

Protocol.parse can be used to turn protocol messages into objects which can then be dispatched to a Protocol.Handler. The Args and KWArgs can be parsed further using the various helper methods available on the Protocol class. @pkmn/client's Handler exists as a detailed example of what a Protocol.Handler implementation might look like.

import {Protocol, Args, KWArgs} from '@pkmn/protocol';

class BoostHandler implements Protocol.Handler {
  '|-boost|'(args: Args['|-boost|'], kwArgs: KWArgs['|-boost|']) {
    const [, p, stat, n] = args;
    const pokemon = Prototol.parsePokemonIdent(p);
    const num = Number(n);

    let message = `${pokemon.player}'s ${pokemon.name}'s ${stat} stat was boosted by ${num}`;
    if (kwArgs.from) message += ` from ${Protocol.parseEffect(from).name}`;
    console.log(`${message}!`);
  }
}

The generate-handler script can be used to reduce amount of boilerplate code required to exhaustively implement the Pokémon Showdown protocol.

Verifier

@pkmn/protocol also provides protocol-verification logic, primarily useful for testing. Verifier.verify can be used to verify a data chunk received from the Pokémon Showdown server (Verifier.verifyLine can be used to verify individual lines). The Verifier only performs basic strutural/shape verification (eg. the protocol is well-formed) as opposed to fine grained domain-specific verification (ie. it will verify an ID is received, but does not verify that the ID refers to a known object etc).

import {Verifier} from '@pkmn/protocol/verifier'

console.log(Verifier.verify(protocol));

The TypeScript compiler may require special configuration to be able to directly import a subdirectory of the main @pkmn/protocol package - see the tsconfig.json documentation on baseUrl and paths.

{
 "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@pkmn/protocol/*": ["node_modules/@pkmn/protocol/build/*"]
    }
  }
}

This package ships with a protocol-verifier script which can be used to verify protocol lines read from standard input.

Browser

The recommended way of using @pkmn/protocol in a web browser is to configure your bundler (Webpack, Rollup, Parcel, etc) to minimize it and package it with the rest of your application. If you do not use a bundler, a convenience index.min.js is included in the package. You simply need to depend on ./node_modules/@pkmn/protocol/build/index.min.js in a script tag (which is what the unpkg shortcut above is doing), after which pkmn.protocol will be accessible as a global.

License

This package is distributed under the terms of the MIT License. Parts of the code have been derived from the Pokémon Showdown server and the MIT Licensed portions of the client.