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

task-books

v1.0.0

Published

Your application description

Readme

Task Books API

Task Books API is a RESTful web service for managing book records. It provides a set of endpoints for creating, retrieving, updating, and deleting book entries. This README provides an overview of the project and instructions on how to use it.

Local URL - http://localhost:3000

Prod URL - https://task-books-e6vp3iquhq-uc.a.run.app

Table of Contents

Getting Started

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Node.js: Make sure you have Node.js installed on your machine. You can download it from https://nodejs.org/.

Installation

Follow these steps to set up the project:

  1. Clone this repository to your local machine:

    git clone https://github.com/prangya-parimita-patra/task-books-api.git

  2. Install all modules needed to run the project:

    npm i

  3. Run on local environment

    npm run dev

  4. Host on production - Put path of Dockerfile in project , select the environment for NodeJS and default start script - npm start

  5. Run tests - npm test

  6. Make test coverage report - npm run coverage , folder is created in root folder named coverage

Local URL - http://localhost:3000

Prod URL - https://task-books-e6vp3iquhq-uc.a.run.app

Collection of all the 5 APIs along woth test scripts of postman

  1. GET /api/books: Retrieve a list of all books.
  2. GET /api/books/:id: Retrieve a specific book by its ID.
  3. POST /api/books: Add a new book to the collection.
  4. PUT /api/books/:id: Update an existing book by its ID.
  5. DELETE /api/books/:id: Delete a book from the collection by its ID.

Postman Collection

  1. A Postman collection and environment file are included in the postman folder of this project. You can use these files to test the API endpoints using Postman.

  2. Import the Postman collection: Open Postman and import the task-books.postman_collection.json file located in the postman folder.

  3. Import the Postman environment: Import the task-books.postman_environment.json file also located in the postman folder. This environment file contains variables used in the collection.

  4. Set environment variables: Make sure to set the necessary environment variables like task-book-url to point to your API server (e.g., http://localhost:3000) within Postman for local and .

  5. un API tests: You can now run API tests from the imported collection to interact with and test the API endpoints.