yandex-cloud-fn
v2.5.5
Published
Helpers for Yandex Cloud function Node.js runtime
Downloads
13
Readme
yandex-cloud-fn
Runtime-хелперы для Node.js функций в Yandex Cloud.
Что включает
- покрытие типами:
event
,context
, итд - определение источника запроса:
isHttpRequest
,isTimerRequest
, итд - получение тела запроса (с учетом base64):
getHttpBody
- отправка json ответа:
sendJson
- корректное логирование:
fixConsoleForLogging
,fixValueForLogging
.
Установка
npm i yandex-cloud-fn
Использование
import { Handler, HttpRequest, TimerRequest, isHttpRequest, sendJson } from 'yandex-cloud-fn';
export const handler: Handler<HttpRequest | TimerRequest> = async event => {
if (isHttpRequest(event)) {
const reqBody = JSON.parse(getHttpBody(event));
console.log(`Triggered by http request: ${JSON.stringify(reqBody)}`);
return sendJson({ ok: true });
} else {
console.log(`Triggered by timer: ${event.messages[0].details.trigger_id}`);
}
}
Больше примеров в папке /examples.
Доступные методы
tbd
Лицензия
MIT @ Vitaliy Potapov