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

smart-optimizer

v0.0.4

Published

A package for compressing and resizing images.

Downloads

17

Readme

Smart Optimizer

NPM Version Build Status License

Smart Optimizer is an efficient image compression and resizing middleware for Node.js applications. Using TypeScript, Multer, Tsup, and Sharp, it allows you to compress images before uploading, manage file sizes, and specify image quality. Perfect for optimizing image uploads in your web applications.

Features

  • File Compression: Compress images before uploading with a boolean flag.
  • File Size Ratio: Automatically create multiple image sizes based on specified ratios.
  • Image Quality: Set image quality from 1 to 100.
  • Local Path: Specify a local path where processed images are saved.

Installation

Install the package using npm:

npm install smart-optimizer

Usage

Setting Up Middleware

To use Smart Optimizer as middleware in your application, follow these steps:

  1. Import Dependencies:
const UploadManager = require("smart-optimizer").default;

OR

import uploadManager from 'smart-optimizer'
  1. Initialize Middleware:
exports.uploadPic = async (req, res, next) => {
 let imagePath = [];
 const uploader = new UploadManager({
   fileCompression: true,
   fileResizeRatio : [[100,100],[200,200]], //optional
   allowExtension: ["jpeg", "jpg", "png"], // you can add more extension also.
   imageQuality: 70,
   localPath: "public/img", 
 });
 uploader.uploadFiles(req, res, function (err, uploadResponse) {
   if (err) {
     console.log("Error:", err);
     return next(err);
   }
   if (uploadResponse.code === 200) {
     req.file = uploadResponse.data[0];
     next();
   } else {
     console.log("Upload failed with code:", err);
     res.status(500).send("Upload failed");
   }
 });
};
  1. Routes
app.post('/upload',uploadPic, (req, res) => {
   // Respond with the details of the processed image
   if (req.file) {
       console.log("Upload files", req.file);
   } else {
       console.log("No Files  uploaaded");
   }
   res.status(200).json({
       success: true,
       message: "Image",
   });
});

Return Object

After the image is processed and uploaded, the middleware will add the processed file information to req.file. This object contains details about the uploaded file, such as its filename, size, and path.

License

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

Contributing

Contributions are welcome! Please fork the repository and submit a pull request.

Issues

If you encounter any issues, please open an issue on GitHub Issues.