vscode / sublime text 在保存时发出 post 请求

vscode / sublime text make post request on save

为了快速开发的目的,我想在每次保存 css 文件时对我的服务器进行 REST POST(或 websocket)更改。是否有可以帮助我的现有扩展程序?

您可以使用 RunOnSave and call curl 发出 HTTP POST 请求。

"emeraldwalk.runonsave": {
"commands": [
    {
        "match": "\.css$",
        "cmd": "curl -XPOST localhost:8080/hello"
    }
]

}

真的有none。我使用前面提到的 RunOnSave 和 Gist 作为灵感来制作我自己的扩展。