Ecosyste.ms: Awesome
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: 23 days ago
JSON representation
Apache OpenWhisk Web action redirecting request to Express applications
- Host: GitHub
- URL: https://github.com/lionelvillard/openwhisk-expressjs
- Owner: lionelvillard
- License: apache-2.0
- Created: 2017-05-04T21:26:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T14:59:22.000Z (over 7 years ago)
- Last Synced: 2024-09-15T22:28:51.370Z (about 2 months ago)
- Topics: expressjs, openwhisk, serverless
- Language: JavaScript
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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;
```