Typora + PicGo-Core + Custom Command 實現上傳圖片到圖牀

教程參考html

Typora+PicGo-Core(command line)+Gitee實現圖片上傳到圖牀 主要借鑑 picgo 操做命令java

Typora + PicGo + Gitee 實現圖片自動上傳到圖牀 主要借鑑 gitee 圖牀的搭建node

1. node 環境準備

請自行百度解決...linux

2. 使用 node 安裝 PicGo-Core

// npm 命令執行速度過慢的話,咱們能夠使用一下淘寶的鏡像 
npm install -g picgo --registry=https://registry.npm.taobao.org

// 安裝完成之後測試一下是否安裝成功
picgo -v

3. 使用 picgo 命令安裝 gitee-uploader 插件

picgo install gitee-uploader

4. 使用 picgo 命令設置 uploader

C:\Users\Run\Desktop>picgo set uploader
? Choose a(n) uploader (Use arrow keys)
❯ gitee
  smms
  tcyun
  github
  qiniu
  imgur
  aliyun
  upyun
(Move up and down to reveal more choices)

? Choose a(n) uploader gitee
? repo: xxxx/image
? branch: master
? token: 5a34fa3f348d556...
? path: 2020
? customPath: 年月
? customUrl: https://gitee.com/xxxx/image/raw/master/
[PicGo SUCCESS]: Configure config successfully!

5. 配置 Typro 上傳服務設定

重點是 自定義命令 的組成部分: [your node path] [your picgo path] uploadgit

上傳服務 Custom Command
自定義命令 D:\nodejs\node.exe D:\nodejs\node_global\node_modules\picgo\bin\picgo upload

注意:配置完成後能夠點擊 驗證圖片上傳選項 來測試是否配置成功github

6. 完整的配置文件

如下是參照 PicGo-Core官方文檔 的進行的配置npm

首先咱們須要找到咱們的配置文件,picgo 的默認配置文件在不一樣系統的目錄不太同樣:
linux 和 macOS 均爲 ~/.picgo/config.json
windows 則爲 C:\Users\{你的用戶名}\.picgo\config.jsonjson

{
  "picBed": {
    "current": "gitee",
    "gitee": {
      "repo": "xxxx/image",
      "branch": "master",
      "token": "5a34fa3f348d556...",
      "path": "2020",
      "customPath": "yearMonth",
      "customUrl": "https://gitee.com/xxxx/image/raw/master/"
    },
    "uploader": "gitee",
    "transformer": "path"
  },
  "picgoPlugins": {
    "picgo-plugin-gitee-uploader": true
  },
  "picgo-plugin-gitee-uploader": {
    "lastSync": "2020-07-30 10:29:26"
  }
}
相關文章
相關標籤/搜索