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

imgboxify

v1.0.3

Published

A script to automate image upload to imgbox.

Downloads

277

Readme

Imgboxify Package Documentation

Table of Contents

Overview

Imgboxify provides a simple and efficient way to upload images to the imgbox.com service. It supports uploading both from file paths and image buffers, making it versatile for various use cases. Although you can't mix up both image buffers and file path together in the input array.

Installation

To install the Imgboxify package, use npm:

npm install imgboxify
pnpm add imgboxify

Usage

To use the Imgboxify, you first need to create an instance of the Imgbox class using the static create method. Then, you can use the uploadImages method to upload your images.

import Imgbox from 'imgboxify';
// const { default: Imgbox } = require("imgboxify");

const uploader = await Imgbox.create();
const result = await uploader.uploadImages(['path/to/image1.jpg', 'path/to/image2.png']);
console.log(result);

API Reference

Imgbox Class

The main class of the Imgboxify package.

Methods

static create()

Creates and initializes an instance of the Imgbox class.

  • Returns: Promise<Imgbox>
uploadImages(files: InputImageBuffer | InputImagePath)

Uploads one or more images to imgbox.com.

  • Parameters:
    • files: An array of either file paths (string[]) or image buffers ({name: string, data: Buffer}[])
  • Returns: Promise<IUploadResult>
isFileAndHasReadPermission(path: string)

Checks if a file exists and has read permissions.

  • Parameters:
    • path: The file path to check
  • Returns: Promise<boolean>

Interfaces

IUploadResult

The result of an upload operation.

interface IUploadResult {
    ok: boolean;
    message?: string;
    gallery_edit?: string;
    files?: IFileResult[];
}

IFileResult

Information about an uploaded file.

interface IFileResult {
    id: string;
    slug: string;
    name: string;
    name_html_escaped: string;
    created_at: string;
    created_at_human: string;
    updated_at: string;
    gallery_id: string;
    url: string;
    original_url: string;
    thumbnail_url: string;
    square_url: string;
    selected: boolean;
    comments_enabled: number;
    comments_count: number;
}

Examples

Uploading images from file paths

import Imgbox from 'imgboxify';

async function uploadFromPaths() {
    const uploader = await Imgbox.create();
    const result = await uploader.uploadImages(['image1.jpg', 'image2.png']);
    console.log(result);
}

uploadFromPaths();

Uploading images from buffers

import Imgbox from 'imgboxify';
import fs from 'fs/promises';

async function uploadFromBuffers() {
    const uploader = await Imgbox.create();
    
    const image1 = await fs.readFile('image1.jpg');
    const image2 = await fs.readFile('image2.png');
    
    const buffers = [
        { name: 'image1.jpg', data: image1 },
        { name: 'image2.png', data: image2 }
    ];
    
    const result = await uploader.uploadImages(buffers);
    console.log(result);
}

uploadFromBuffers();