Skip to content

Instantly share code, notes, and snippets.

View co6x0's full-sized avatar
:octocat:
猫の手も借りたい

Nao Komura co6x0

:octocat:
猫の手も借りたい
View GitHub Profile
@co6x0
co6x0 / index.js
Last active April 8, 2023 11:18
Slack notification by "FILE_VERSION_UPDATE" of Figma webhook event at AWS Lambda.
const https = require('https');
const endpointHost = 'hooks.slack.com';
const endpointPath = 'Your Slack webhook URL Path';
exports.handler = async (event) => {
const body = JSON.parse(event.body);
const postData = JSON.stringify({
"text": "Update Version History in Figma",
"blocks": [
{