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-oci

v1.0.0

Published

PicGo uploader for Oracle Cloud Infrastructure (OCI) Object Storage

Downloads

243

Readme

picgo-plugin-oci

A PicGo uploader plugin for Oracle Cloud Infrastructure (OCI) Object Storage.

OCI Object Storage is S3-compatible, this plugin uses the AWS SDK for JavaScript (S3 client) to upload images.

Install

PicGo-CLI

picgo install oci

PicGo GUI

If published to the marketplace, search for oci and install.

Local Import

For unpublished development or self-hosted usage:

  1. Clone or download this repo:
    git clone https://git.huaqingxu.dpdns.org/devops/picgo-oci-plugin.git
  2. Install dependencies and build:
    cd picgo-oci-plugin
    npm install
    npm run build
  3. In PicGo GUI, go to 插件设置导入本地插件 and select the plugin root directory (picgo-oci-plugin/).

Configuration

picgo set uploader oci

You'll be prompted for:

| Field | Description | | ----------------- | ------------------------------------------------------------------------ | | accessKeyID | OCI Customer Secret Key ID (generated in OCI Console) | | secretAccessKey | OCI Customer Secret Key (generated in OCI Console) | | namespace | OCI Object Storage namespace (Tenancy > Object Storage Settings) | | region | OCI region (e.g. us-ashburn-1, eu-frankfurt-1, ap-singapore-1) | | bucketName | OCI Object Storage bucket name | | uploadPath | Upload path template (default: {year}/{month}/{md5}.{extName}) | | endpoint | Custom endpoint (leave empty to auto-construct from namespace + region) | | proxy | Proxy URL (optional) | | acl | Canned ACL (default: public-read) | | outputURLPattern| Custom output URL template (optional) |

How to get OCI credentials

  1. Go to OCI Console > Identity > Users
  2. Select your user > Resources > Customer Secret Keys
  3. Click "Generate Secret Key" and save the Access Key ID and Secret Key

How to find your Object Storage namespace

  • Go to OCI Console > Tenancy > Object Storage Settings
  • The Namespace field is your Object Storage namespace

Upload Path Template

| Variable | Description | | ----------------- | ---------------------------------- | | {year} | Current year (e.g. 2026) | | {month} | Current month (01-12) | | {day} | Current day (01-31) | | {fullName} | Original file name with extension | | {fileName} | Original file name without ext | | {extName} | File extension without dot | | {md5} | MD5 hash of file content | | {sha1} | SHA1 hash of file content | | {sha256} | SHA256 hash of file content | | {timestamp} | Unix timestamp (seconds) | | {timestampMS} | Unix timestamp (milliseconds) |

Example: images/{year}/{month}/{md5}.{extName}

License

MIT