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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@goosewithwifi.org/anigoose

v2.5.4

Published

A web application for watching anime.

Readme

A local-first anime media client focused on performance, privacy, and personal library tracking.

License: MIT Github stars App version


Goosewithwifi is a lightweight Node.js application for browsing anime metadata, managing a personal watchlist, and tracking viewing progress through a clean frontend running on your own machine.

Features

Based on a lightweight architecture, Goosewithwifi includes:

  • Performance First: Designed specifically to run smoothly on low-end hardware.
  • Built-in Search & Discovery: Explore trending and popular anime metadata.
  • Watchlist Management: Keep track of current, completed, and planned titles.
  • User Insights: View personal library and progress statistics.
  • MAL Integration: Seamlessly import your lists from MyAnimeList.

Getting Started

Prerequisites

⚡ Quick Install

Open a terminal and run:

npm install -g @goosewithwifi.org/anigoose

Note: After the one-time setup, you can start the application anytime, from any directory, by simply opening a terminal and typing anigoose.

📱 Android Installation (Termux)

You can run Goosewithwifi on your Android device using the Termux app. No root is required.

  1. Install Termux: Download and install it from F-Droid or the Termux website.
  2. Update packages:
    pkg update && pkg upgrade
    Press y and Enter when prompted to confirm updates.
  3. Install Node.js:
    pkg install nodejs
    Press y and Enter when prompted.
  4. Install Goosewithwifi:
    npm install -g @goosewithwifi.org/anigoose
  5. Run the app:
    anigoose

Once running, you can access the interface by navigating to http://localhost:3000/ in your mobile browser.


Uninstalling

If you need to remove the application from your system, simply open a terminal and run:

npm uninstall -g @goosewithwifi.org/anigoose

This safely deletes the application files and removes the anigoose command from your system's PATH.


Manual Installation (For Developers)

Want to poke around the source code or contribute? You can build the project manually.

1. Clone the repository:

git clone https://github.com/Goosewithwifi/dango.git
cd dango

2. Install, Build, and Run: Use provided run scripts that offer a menu to choose between a Development or Production setup. To run a development environment manually:

  1. Run npm install to install core dependencies.
  2. Run npm run install:client to install frontend tools (Vite, React, etc).
  3. Run npm run build to build the source code.

On Linux / macOS:

chmod +x run.sh
./run.sh

On Windows:

run.bat

Commands

Once installed globally, you can use the following commands:

  • anigoose - Start the application.
  • anigoose --version (or -v) - Check your installed version.

Data Location

Goosewithwifi stores your persistent files in your OS app-data folder instead of inside the globally installed npm package:

  • Windows: %APPDATA%\goosewithwifi
  • macOS: ~/Library/Application Support/goosewithwifi
  • Linux: $XDG_DATA_HOME/goosewithwifi or ~/.local/share/goosewithwifi

This folder contains your .env, database files, sync manifests, and Google token file. Existing installs will automatically migrate legacy files from the old server/ folder on first launch when those files are still present.


Cloud Sync (Optional)

Goosewithwifi can automatically sync your local data to the cloud. The app stays local-first: your main database is a local SQLite file, and cloud sync exports/imports the app data as JSON when needed.

Sync provider priority is:

  1. GitHub Cloud Sync
  2. Google Drive Sync
  3. Rclone Sync

If GitHub is connected, it is used first. Google Drive and Rclone remain available as fallback or legacy sync options.

1. GitHub Cloud Sync

GitHub Cloud Sync is the recommended setup. It uses GitHub's device login flow, so users do not need to create a Google Cloud project, manage client secrets, or install external sync tools.

  1. Open Goosewithwifi.
  2. Go to Settings -> Synchronization.
  3. Click Sign in with GitHub.
  4. Open the shown GitHub device URL, enter the code, and approve access.

Goosewithwifi will create a private GitHub repository named dango-sync-data in your account and store your sync data in JSON:

  • Production mode uses sync.json.
  • Development mode uses sync.dev.json.

The app requests GitHub repository access because it needs to create and update this private sync repository. The GitHub token is stored locally in your Goosewithwifi app-data .env file.

2. Google Drive Sync

Google Drive sync is still supported. To use it, you need to provide your own Google Cloud credentials:

  1. Go to the Google Cloud Console.
  2. Create a new project and enable the Google Drive API.
  3. Configure the OAuth Consent Screen (set it to "External" and add yourself as a test user).
  4. Create OAuth 2.0 Client IDs (Application type: "Web application").
  5. Add http://localhost:3000/api/auth/google/callback to the Authorized redirect URIs.
  6. Open Goosewithwifi, go to Settings -> Synchronization, and enter your Client ID and Client Secret in the Google authentication section.

3. Rclone Sync

If you prefer using Mega, Dropbox, or other providers, you can use Rclone:

  1. Install Rclone on your system and ensure it's in your PATH.
  2. Configure a remote using rclone config.
  3. In Goosewithwifi, go to Settings -> Synchronization and select your remote name from the Rclone dropdown.

Rclone is used only when GitHub and Google Drive sync are not active.


Disclaimer

Goosewithwifi is a local-first media client. It does not host, upload, store, or distribute copyrighted video content.

Users are responsible for configuring and using the application in compliance with applicable laws in their jurisdiction. All trademarks, titles, artwork, metadata, and copyrighted material belong to their respective owners.

This project is provided for personal library management, metadata browsing, and local application experimentation. The maintainers do not endorse or encourage copyright infringement.

License

This project is open-source and licensed under the MIT License - see the LICENSE file for details.