/opt/canhelp/node_modules/standardwebhooks
NameSizeModeActions
dist/-0755rm
package.json14110644editdlrm
README.md4850644editdlrm
Edit: /opt/canhelp/node_modules/standardwebhooks/README.md (485B)
Typescript/Javascript library for Standard Webhooks # Example Verifying a webhook payload: ```javascript import { Webhook } from "standardwebhooks" const wh = new Webhook(base64_secret); wh.verify(webhook_payload, webhook_headers); ``` # Development ## Requirements - node - yarn ## Building the library ```sh yarn yarn build ``` ## Contributing Before opening a PR be sure to format your code! ```sh yarn lint:fix ``` ## Running Tests Simply run: ```sh yarn test ```