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

picgo-plugin-oss-custom-headers

v1.0.2

Published

A picgo plugin for custom oss put headers

Downloads

63

Readme

picgo-plugin-oss-custom-headers

A plugin for picgo to custom oss put headers

picgo 客户端不支持设置阿里云 OSS 图片上传的元信息(请求头 headers), 使用阿里云 OSS 做图床的用户需要手动到 OSS 控制台给bucket里的图片设置缓存头, 本插件仅支持给阿里云 OSS 图床添加缓存 Headers.

在 picgo 客户端搜索插件:

安装之后新增 uploader, 取消勾选, 隐藏 uploader: 由于 picgo 没有暴露修改内部 uploader 的方法, 所以依照源码重写了aliyun的内部uploader, 虽然这个新 uploader 并不是插件想要实现的功能, 但 picgo 也没有提供隐藏的方式, 我们取消勾选, 隐藏这个 uploader, 将功能交给plugin

点击插件设置 Headers:

设置缓存 Headers:

Cache-Control: max-age=31536000; Expires: Thu, 20 Dec 2023 16:57:08 GMT

请求头之间使用分号;隔开, 类似k:v;k:v 阿里云 OSS 可以自定义的用户元信息(headers)只有几个, 经我使用体验, 只有Cache-ControlExpires是有用的, 所以 headers 设置目前只支持这两个请求头, 参考阿里云文档

推荐缓存头设置, 缓存一年:

Cache-Control: max-age=31536000;

设置完成后, 上传到 OSS 的图片就添加了HTTP缓存头元信息.

在 Node.js 中使用插件

const { PicGo } = require("picgo");
const ossCustomPlugin = require("picgo-plugin-oss-custom-headers");
// register plugin
picgo.use(ossCustomPlugin, "picgo-plugin-oss-custom-headers");
// set plugin config
picgo.setConfig({
  "picgo-plugin-oss-custom-headers": {
    headers:
      "Cache-Control: max-age=31536000; Expires: Thu, 20 Dec 2023 16:57:08 GMT",
  },
});

Debug

如何调试插件:

需要在.env文件添加关于 aliyun 的配置, 具体字段和picgo软件中阿里云OSS的配置一致

accessKeyId=
accessKeySecret=
bucket=
area=
path=
customUrl=
option=

配置好.env 后,执行npm run test即可调试