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

instaling-solver

v2.0.6

Published

A modern CLI companion for automating your https://instaling.pl sessions

Readme

🌟 instaling-solver

A modern CLI companion for automating your https://instaling.pl sessions

Version License Platform

[!IMPORTANT]
This tool is intended for personal educational automation only. Use responsibly and accept the risk of possible account suspension.

📖 Table of Contents

  1. ✨ Overview
  2. 🚀 Features
  3. 📦 Installation & Setup
  4. 🧰 Usage Guide — CLI Commands
  5. ⚙️ Configuration Files Explained
  6. 🛠️ Developer Guide / Contributing
  7. 📄 License

✨ Overview

instaling-solver provides a modern CLI for automating your Instaling.pl vocabulary-learning sessions. It simulates human typing, manages multiple accounts, and includes a complete configuration system.

🚀 Features

  • 🔄 Automatic flow of Instaling sessions
  • ⌨️ Human-like typing simulation (WPM, typos, delays)
  • ⚙️ Clean JSON-based configs
  • 🧪 Typewriter mode for testing input behavior
  • 🔍 Config init/clear/find tools
  • 🛡️ Lightweight architecture with zero bloat

📦 Installation & Setup

npm install -g instaling-solver@latest
instaling-solver

instaling-solver help

🧰 Usage Guide — CLI Commands

🔹 solve — Run Learning Sessions

Runs https://instaling.pl sessions using:

  • accounts from accounts.json
  • realistic typing simulation & delays from options.json
  • answer memory from storage.json
instaling-solver solve

# or shorter
instaling-solver

solve --pause

Waits for user input before the process exits.

🔹 config — Manage Solver Configuration

config find

Shows file paths for accounts, options, and storage. The paths are operating system specific.

config init

Creates all config files if missing.

config clear

Deletes all config files (permanently).

Examples:

instaling-solver config find
instaling-solver config init
instaling-solver config clear

🔹 typewriter — Test Typing Simulation

Simulates typing with your settings from options.json:

instaling-solver typewriter

⚙️ Configuration Files Explained

instaling-solver config init generates:

📁 accounts.json

Stores Instaling login credentials and account names.

[
  {
    "name": "Optional account name to display instead of username",
    "username": "Username to your account",
    "password": "Password to your account (will not be hashed!)"
  }
]

📁 options.json

Defines typing and behavior settings.

{
  "inputTyping": { "wpm": 40, "typoRate": 0.05 },
  "reactionTime": { "from": 1000, "to": 1600 },
  "errorRate": 0.02
}

Field meaning:

  • wpm → Base number of words per minute
  • typoRate → Frequency of intentional typos (from 0 to 1)
  • reactionTime → How long to wait before answering
  • errorRate → Chance of intentionally wrong answers (from 0 to 1)

📁 storage.json

Internal memory for previously solved items.

[
  {
    "question": "Prefiero _____ ______ ___ los amigos que estar sola.",
    "translation": "spędzać czas z przyjaciółmi",
    "answer": "pasar tiempo con los amigos",
    "updatedAt": "11/27/2025, 1:15:29 PM"
  }
]

🛠️ Developer Guide / Contributing

1️⃣ Clone the Repository

git clone https://github.com/PeterLesiak/instaling-solver
cd ./instaling-solver

2️⃣ Install Dependencies

pnpm install

3️⃣ Run the CLI

node ./build/index.mjs

4️⃣ (Optional) Setup an Alias

# For e.g. when using bash
alias instaling-solver='~/instaling-solver/build/index.mjs'

instaling-solver

[!TIP]
Use pnpm for all development commands.

Useful Commands

| Purpose | Command | | ------------ | ------------------------ | | Build binary | pnpm build | | Run CLI | node ./build/index.mjs | | Typecheck | pnpm typecheck | | Format code | pnpm format |

📄 License

MIT License.