4.4.2 • Published 5 years ago
incarnate-cloud v4.4.2
Incarnate Cloud
Cloud Function Middleware for Incarnate
Install
npm i -S incarnate-cloud
API Docs
http://cloud.incarnate.resist.design
Usage
import {AWS} from 'incarnate-cloud';
module.exports = {
handler: AWS(
{
subMap: {
package: {
subMap: {
service: {
factory: () => {
return {
method: async arg1 => `Received: ${arg1}`
};
}
}
}
}
}
},
[
'/package/service/method'
],
'https://example.com'
)
};