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

fullstack-book-of-the-week

v1.0.2

Published

A set of tech books that might be enjoyed by the fullstack developer, ideally one per week

Readme

fullstack-book-of-the-week

npm version CircleCI codecov

A set of tech books that might be enjoyed by the fullstack developer, ideally one per week.

Install

With NPM:

npm install fullstack-book-of-the-week

with Yarn:

yarn add fullstack-book-of-the-week

Usage

ES5 example:

var bookOfTheWeek = require('fullstack-book-of-the-week').default;
console.log(bookOfTheWeek()()); // changes every week based on current time

// You can pass a custom week number (from 1 to 53) to get a different book
console.log(bookOfTheWeek()(23));

ES2015 example:

import { bookOfTheWeek } from 'fullstack-book-of-the-week';
console.log(bookOfTheWeek()()); // changes every week based on current time

// You can pass a custom week number (from 1 to 53) to get a different book
console.log(bookOfTheWeek()(23));

Sample output:

{
  "id": "1785885588",
  "title": "Node.js Design Patterns - Second Edition",
  "author": "Mario Casciaro and Luciano Mammino",
  "links": {
    "usa": "https://www.amazon.com/dp/1785885588/?tag=fullstackbulletin-20",
    "uk": "https://www.amazon.co.uk/dp/1785885588/?tag=fullstackbulletin-21"
  },
  "coverPicture": "https://images-na.ssl-images-amazon.com/images/I/519BIge%2BJ2L.jpg",
  "description": "Get the best out of Node.js by mastering  its most powerful components and patterns to create modular and scalable applications with ease. Create reusable patterns and modules by leveraging the new features of Node.js. Understand  the asynchronous single thread design of node and grasp all its features and patterns to take advantage of various functions. This unique guide will help you get the most out of Node.js and its ecosystem."
}

Options

You can pass a custom array of books in the initialization function in case you want to use the same algorithm in a custom set of books.

E.g.

import { bookOfTheWeek } from 'fullstack-book-of-the-week';

const quotes = [
  {
    "id": "1491927577",
    "title": "Linux Pocket Guide: Essential Commands",
    "author": "Daniel J. Barrett",
    "links": {
      "usa": "https://www.amazon.com/dp/1491927577/?tag=fullstackbulletin-20",
      "uk": "https://www.amazon.co.uk/dp/1491927577/?tag=fullstackbulletin-21"
    },
    "coverPicture": "https://images-na.ssl-images-amazon.com/images/I/51AbKrNDvaL.jpg",
    "description": "If you use Linux in your day-to-day work, this popular pocket guide is the perfect on-the-job reference. The third edition features new commands for processing image files and audio files, running and killing programs, reading and modifying the system clipboard, and manipulating PDF files, as well as other commands requested by readers. You’ll also find powerful command-line idioms you might not be familiar with, such as process substitution and piping into bash. Linux Pocket Guide provides an organized learning path to help you gain mastery of the most useful and important commands. Whether you’re a novice who needs to get up to speed on Linux or an experienced user who wants a concise and functional reference, this guide provides quick answers. Selected topics include:The filesystem and shell, File creation and editing, Text manipulation and pipelines, Backups and remote storage, Viewing and controlling processes, User account management, Becoming the superuser, Network connections, Audio and video, Installing softwar, Programming with shell scripts."
  },
  {
    "id": "0134032802",
    "title": "The Art of Scalability: Scalable Web Architecture, Processes, and Organizations for the Modern Enterprise",
    "author": "Martin L. Abbott and Michael T. Fisher",
    "links": {
      "usa": "https://www.amazon.com/dp/0134032802/?tag=fullstackbulletin-20",
      "uk": "https://www.amazon.co.uk/dp/0134032802/?tag=fullstackbulletin-21"
    },
    "coverPicture": "https://images-na.ssl-images-amazon.com/images/I/51RLUGr60SL.jpg",
    "description": "Writing for technical and nontechnical decision-makers, Abbott and Fisher cover everything that impacts scalability, including architecture, process, people, organization, and technology. Their insights and recommendations reflect more than thirty years of experience at companies ranging from eBay to Visa, and Salesforce.com to Apple. You’ll find updated strategies for structuring organizations to maximize agility and scalability, as well as new insights into the cloud (IaaS/PaaS) transition, NoSQL, DevOps, business metrics, and more. Using this guide’s tools and advice, you can systematically clear away obstacles to scalability–and achieve unprecedented IT and business performance."
  }
];

console.log(bookOfTheWeek(quotes)());

Contributing

Everyone is very welcome to contribute to this project. You can contribute just by submitting bugs or suggesting improvements by opening an issue on GitHub.

License

Licensed under MIT License. © Luciano Mammino.