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

picgo-plugin-nodeimage

v1.0.0

Published

PicGo plugin for NodeImage image hosting service (支持 TLS 1.3)

Downloads

45

Readme

picgo-plugin-nodeimage

A PicGo plugin for NodeImage image hosting service.

Note: This project was built entirely with AI coding (Claude Code). While functional, use at your own risk. Issues and stars are welcome!

GitHub issues GitHub stars

Features

  • Upload images to NodeImage
  • TLS 1.3 support (via system curl)
  • Cross-platform (macOS / Linux / Windows)
  • GUI configuration

Installation

GUI

  1. Open PicGo
  2. Go to Plugin Settings
  3. Search for nodeimage
  4. Click Install

CLI

picgo install nodeimage

Configuration

GUI

  1. Open PicGo -> PicBed Settings
  2. Find NodeImage
  3. Enter your API Key
  4. Click "Confirm" and set as default

CLI

picgo set uploader nodeimage

Or manually edit ~/.picgo/config.json:

{
  "picBed": {
    "uploader": "nodeimage",
    "current": "nodeimage",
    "nodeimage": {
      "apiKey": "your-api-key-here"
    }
  }
}

Get API Key

  1. Visit NodeImage
  2. Register and login
  3. Get your API Key from user settings

System Requirements

This plugin uses system curl command to support TLS 1.3:

| Platform | Status | |----------|--------| | macOS | Supported by default | | Linux | Supported by default | | Windows 10/11 | Supported by default | | Windows 7/8 | Requires curl installation |

Technical Details

Why curl?

PicGo is built on Electron with an older Node.js version. Its HTTP client (axios) doesn't support TLS 1.3, but NodeImage server only accepts TLS 1.3 connections.

This plugin uses system curl to bypass this limitation, as modern operating systems' curl supports TLS 1.3.

Related Issue: PicGo#1194

API Endpoint

This plugin uses the NodeImage upload API:

  • Endpoint: POST https://api.nodeimage.com/api/upload
  • Authentication: X-API-Key Header
  • Response:
{
  "success": true,
  "message": "Image uploaded successfully",
  "image_id": "xxx",
  "filename": "xxx.png",
  "links": {
    "direct": "https://cdn.nodeimage.com/i/xxx.png",
    "markdown": "![image](https://cdn.nodeimage.com/i/xxx.png)"
  }
}

Development

# Clone the repo
git clone https://github.com/xshenhan/picgo-plugin-nodeimage.git
cd picgo-plugin-nodeimage

# Install locally to PicGo
cd ~/.picgo
npm install /path/to/picgo-plugin-nodeimage

# Restart PicGo to test

Contributing

This project was created with AI assistance. Contributions are welcome!

  • Found a bug? Open an issue
  • Like this project? Give it a star!
  • Want to improve it? PRs are welcome!

Disclaimer

This software is provided "as is", without warranty of any kind. Use at your own risk.

License

MIT