0.0.1 • Published 4 years ago

tencent-serverless-http-monitor v0.0.1

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
4 years ago

Tencent Serverless Http

Build Status npm NPM downloads

This project is a fork of aws-serverless-express, and modify for tencent cloud scf.

Install

npm install tencent-serverless-http

Usage

// handler.js
'use strict';
const tencentServerlessHttp = require('tencent-serverless-http');
const app = require('./app');
const server = tencentServerlessHttp.createServer(app);

exports.handler = (event, context) => {
  tencentServerlessHttp.proxy(server, event, context);
};

This package includes middleware to easily get the event object SCF receives from API Gateway

const tencentServerlessHttpMiddleware = require('tencent-serverless-http/middleware');
app.use(tencentServerlessHttpMiddleware.eventContext());
app.get('/', (req, res) => {
  res.json(req.apiGateway.event);
});