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

dsaify

v1.0.1

Published

DSAify is a unique, terminal-based command-line interface (CLI) tool designed to help you master Data Structures and Algorithms (DSA) through active practice. Unlike traditional platforms that focus solely on writing code from scratch, DSAify provides a h

Readme

DSAify

What is DSAify?

DSAify is a unique, terminal-based command-line interface (CLI) tool designed to help you master Data Structures and Algorithms (DSA) through active practice. Unlike traditional platforms that focus solely on writing code from scratch, DSAify provides a hands-on, interactive experience where you practice typing out the solutions to common DSA problems.

How it Works for the End User

DSAify guides you through a series of DSA problems. For each problem, you'll be presented with the problem statement and then challenged to type out the solution code. The CLI provides real-time feedback, helping you identify errors and improve your typing speed and accuracy for common DSA patterns.

The core idea is to build muscle memory and familiarity with the syntax and structure of various algorithms and data structures. By repeatedly typing out solutions, you'll not only reinforce your understanding of the concepts but also significantly increase your coding speed and reduce common typing mistakes.

Why I Created This Project

As a developer, I was constantly searching for an effective way to practice DSA. Many existing platforms are excellent for problem-solving, but I found a gap in tools that focused on the physical act of coding and building speed. I realized that while understanding an algorithm is crucial, the ability to quickly and accurately translate that understanding into working code is equally important, especially in timed coding challenges or when rapidly prototyping.

DSAify was born out of this personal need. It's a tool I built for myself to:

  • Increase Typing Speed: Specifically for DSA-related code.
  • Build Muscle Memory: For common algorithmic patterns and data structure implementations.
  • Improve Accuracy: Reduce syntax errors and typos during rapid coding.
  • Reinforce Learning: Active recall through typing helps solidify theoretical knowledge.

This terminal-based CLI approach perfectly fits my development setup, allowing for a seamless and focused practice environment without context switching.

Installation

You can get DSAify from the npm repository.

Run with npx

Want to try it fast? Use npx. It runs DSAify without installing it globally.

npx dsaify

This command fetches and runs the latest version from npm.

Install from npm

Prefer to install it? Get it straight from the npm repository.

npm i -g dsaify

After installing, you can run DSAify like this:

dsaify

Questions

DSAify categorizes questions by Data Structure and Algorithm types, and further sorts them by difficulty level.

Algorithms

  • Easy
    • Binary Search
  • Medium
    • Breadth-First Search (BFS)
    • Depth-First Search (DFS)
    • Merge Sort
    • Quick Sort

Data Structures

  • Easy
    • Linked List
    • Queue
    • Stack
  • Medium
    • Doubly Linked List
    • Graph (Adjacency List)
    • Hash Table
    • Min Heap
    • Binary Tree
  • Hard
    • Trie (Prefix Tree)