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

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: 4 months 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;
```