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
- Host: GitHub
- URL: https://github.com/lionelvillard/openwhisk-expressjs
- Owner: lionelvillard
- License: apache-2.0
- Created: 2017-05-04T21:26:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T14:59:22.000Z (about 8 years ago)
- Last Synced: 2025-03-05T13:50:29.847Z (4 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;
```