Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lionelvillard/openwhisk-expressjs

Apache OpenWhisk Web action redirecting request to Express applications
https://github.com/lionelvillard/openwhisk-expressjs

expressjs openwhisk serverless

Last synced: 23 days ago
JSON representation

Apache OpenWhisk Web action redirecting request to Express applications

Awesome Lists containing this project

README

        

Apache OpenWhisk Web action redirecting request to Express applications

How to use
==========

The basic usage is:

```
const app = require('./server');
const forward = require('openwhisk-expressjs')(app);

function main(request) {
return forward(request);
}

exports.main = main;
```