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 🙏

© 2024 – Pkg Stats / Ryan Hefner

fast-image-server

v1.0.17

Published

Fast Image Server is an npm package that provides image serving functionality with a focus on converting images to webp format, generating thumbnails, and optimizing image delivery. It utilizes Node.js, Express.js, and includes built-in image caching capa

Downloads

212

Readme

Fast Image Server

Fast Image Server is an npm package that provides image serving functionality with a focus on converting images to webp format, generating thumbnails, and optimizing image delivery. It utilizes Node.js, Express.js, and includes built-in image caching capabilities.

Features

  • Converts images to webp format
  • Generates thumbnails in webp format
  • Generates low quality preview images in webp format
  • Built-in image cache based on Node.js
  • Uses Express.js for server functionality
  • Automatically creates necessary directories if they do not exist

Usage

Installation

Install the package via npm:

npm install image-server

Starting the Server

  1. Import the startServer function from the package:
const { startServer } = require('fast-image-server')
  1. Call the startServer function to start the Fast Image Server:
  startServer({
      sourceDir: "./high-quality-source-images",
      optimizedDir: "./optimized-images",
      thumbsDir: "./optimized-thumb-images",
      previewDir: "./low-quality-preview-images" 
  }, 4000)

The second argument is the port which if not passed, will default to port 80

Routes

The server listens to requests at the path /images/:imageNameWithExtension. For example:

  • GET /images/a.png
    • If a.png does not exist, returns 404
    • If a.png exists, returns its corresponding webp format
  • GET /images/a.webp
    • Returns the webp corresponding to a.png
    • If webp does not exist, checks if a.png or a.jpg exists and then creates webp from that
  • GET /images/a.thumb.webp
    • Returns the thumbnail for a.png
    • Same rules apply for thumbnails
  • GET /images/a.preview.webp
    • Returns the low quality preview for a.png
    • Same rules apply for preview
  • POST /images/generate-versions/a.png
    • Generates preview, thumb and optimized versions of a.png
    • If a.png is non existent, error is triggered.
    • Returns JSON response with success field and error field

Notes

  • Once served, images will be stored in cache for faster delivery in subsequent requests.
  • Fast Image Server is particularly useful for converting images to webp format and improving image delivery speed in real production uses. It eliminates the need for image conversion in the original application, simplifying the development process.

License

This project is licensed under the MIT License - see the LICENSE file for details.