You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> I recommend starting at https://coffeescript.org/
13
10
14
11
## How does it work?
15
-
`CoffeeScript-lambda-runtime` works by taking care of the compiling and execution of CoffeeScript source code at time of request. This means end-users of the runtime are no longer required to compile their CoffeeScript code to javascript before uploading their functions to AWS Lambda.
12
+
`CoffeeScript-lambda-runtime` works by taking care of the compiling and execution of CoffeeScript source code at time of request. This means end-users of the runtime are not required to compile their CoffeeScript code to javascript before uploading their functions to AWS Lambda.
16
13
17
-
Simply write your functions as you would for NodeJs and it should just work.
14
+
Simply write your functions as you would for Node.js and it should just work.
15
+
```coffeescript
16
+
# feel alive again!
17
+
exports.handler= (event, context) ->
18
+
statusCode:200,
19
+
body:
20
+
JSON.stringify
21
+
message:'CoffeeScript Serverless v1.0! Your function executed successfully!',
0 commit comments