Skip to content

Latest commit

 

History

History
27 lines (13 loc) · 1.03 KB

README.md

File metadata and controls

27 lines (13 loc) · 1.03 KB

awslambda2googlefunctions (JS)

Rewrite-js transformation module to map AWS Lambda functions into Google Cloud Functions (only JavaScript).

Forewords

This conversion tool was inspired by my recent review of Google's alpha-release of Cloud Functions: Google Cloud Functions VS AWS Lambda: fight for serverless cloud domination begins.

Installation

Install rewrite-js as follows:

npm install -g rewrite-js

Usage

You can generate the Google Functions output - given your AWS Lambda function input - as follows:

cat lambda_function.js | rewrite-js awslambda2googlefunctions.js > google_function.js

You can have a look at some examples here.

Notes

This tool is only supposed to speed the function porting process up. It won't take care of resolving unpredictable naming conflicts, testing or deploying your new Google function.