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

slippi-search

v1.4.4

Published

A collection of useful functions for searching through Slippi Replays

Downloads

22

Readme

slippi-search

npm version downloads build status license

Description

This Node.js package is a collection of useful functions for searching through and filtering Slippi replays.

Installation

With Node.js installed, simply run the following command to add the package to your project.

npm install slippi-search

This will also add Project Slippi's @slippi/slippi-js as a dependency.

Usage

See some working examples, or check out the docs.

Example

  1. Create a fresh directory on your disk
  2. Inside this new directory, create a file called search.js
  3. Fill the search.js file with the following contents:
const {
    withGamesFromDir,
    isValidGame,
    withMatchingFrames,
    sortedFrames
} = require("slippi-search");
const { stages } = require("@slippi/slippi-js");

// Define game criteria
const gameCriteria = {
    stageId: [stages.STAGE_BATTLEFIELD, stages.STAGE_DREAM_LAND],
    players: [
        {
            characterId: [0, 20] // Captain Falcon, Falco
        },
        {
            characterId: [19] // Sheik
        }
    ],
    isPAL: [false, true], // Can also just omit
    isTeams: [false]
};

// Define frame criteria
const frameCriteria = {
    players: [
        {
            pre: {
                playerIndex: [1],
                percent: [[10, 20]], // Between 10 and 20 percent
                facingDirection: [-1]
            }
        }
    ]
};

const validGames = [];
const validFrames = [];

// With each game in the directory
withGamesFromDir("replays", game => {
    // Check that game matches criteria
    if (isValidGame(game, gameCriteria)) {
        validGames.push(game);

        // With each frame that matches criteria
        withMatchingFrames(sortedFrames(game), frameCriteria, frame => {
            validFrames.push(frame);

            // Print info about players in frame
            console.log(frame.players);
        });
    }
});
  1. Change the "replays" path to some directory that holds some of your slp files.
  2. Browse to the directory from the command line and run the command: npm install slippi-search. This should create a node_modules directory in the folder.
  3. Run the command: node search.js. This will run the script above to search through and print data about the replay files that met the criteria in that directory.

License

This software is released under the terms of MIT license.