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 🙏

© 2025 – Pkg Stats / Ryan Hefner

afsudoku

v1.2.1

Published

A backtracking sudoku solver

Readme

afsudoku

Build Status

A Sudoku solver with backtracking algorithm.

Installation

npm install afsudoku

Usage

TLDR

let Sudoku = require("afsudoku").Sudoku;
let pos = require("afsudoku").pos;

let sudoku = Sudoku.create();

sudoku.put(pos(1, 6), 1); // put(pos(row, column), value)

sudoku.put(pos(2, 1), 7);
sudoku.put(pos(2, 3), 6);
sudoku.put(pos(2, 4), 5);
sudoku.put(pos(2, 5), 8);
sudoku.put(pos(2, 9), 4);

sudoku.put(pos(3, 2), 2);
sudoku.put(pos(3, 6), 6);
sudoku.put(pos(3, 8), 3);

sudoku.put(pos(4, 2), 3);
sudoku.put(pos(4, 5), 4);
sudoku.put(pos(4, 8), 5);

sudoku.put(pos(5, 1), 4);
sudoku.put(pos(5, 3), 2);
sudoku.put(pos(5, 7), 7);
sudoku.put(pos(5, 9), 3);

sudoku.put(pos(6, 2), 1);
sudoku.put(pos(6, 5), 3);

sudoku.put(pos(7, 2), 8);
sudoku.put(pos(7, 4), 1);
sudoku.put(pos(7, 8), 9);

sudoku.put(pos(8, 1), 1);
sudoku.put(pos(8, 5), 2);
sudoku.put(pos(8, 7), 6);
sudoku.put(pos(8, 9), 5);

sudoku.put(pos(9, 4), 7);

let solved = sudoku.solve();

for (let row = 1; row <= 9; ++row) {
    for (let col = 1; col <= 9; ++col) {
        process.stdout.write(String(solved.val(pos(row, col))));
    }
    process.stdout.write("\n");
}

// Output:
//
// 348291576
// 796583124
// 521476839
// 837642951
// 462915783
// 915837462
// 683154297
// 179328645
// 254769318


let cell1 = solved.cell(pos(9, 4));
let cell2 = solved.cell(pos(9, 5));

// Soft and hard cells
//
// Hard cell: a cell that is part of the puzzle and can't be modified
// Soft cell: a cell that can be modified while solving

console.log(cell1.isSoft(), cell1.val());
console.log(cell2.isSoft(), cell2.val());

// Output:
//
// false 7
// true 6