cljs-lambda icon indicating copy to clipboard operation
cljs-lambda copied to clipboard

Utilities around deploying Clojurescript functions to AWS Lambda

Results 16 cljs-lambda issues
Sort by recently updated
recently updated
newest added

https://github.com/nervous-systems/cljs-lambda/blob/master/plugin/src/leiningen/cljs_lambda.clj#L151-L152

Please add instructions to README for how to add dependencies such as moment.js

Please add how to run locally to the README (ie, `serverless invoke local...`)

I understand from the README that io.nervous/lein-cljs-lambda `0.6.0` defaults the runtime of deployed functions to `nodejs4.3`. However, I received the following message from AWS > Your AWS Account currently has...

``` aws lambda update-function-configuration --role arn:aws:iam::14:role/cljs-lambda-default --runtime nodejs8.10 --memory-size 1024 --timeout 6 --handler index.referralbot_core_SLASH_refer --function-name referralbot-slash-command --vpc-config SubnetIds=[],SecurityGroupIds=[] --dead-letter-config TargetArn= --environment Variables={} usage: aws [options] [ ...] [parameters] To see...

The second time I run `lein cljs-lambda deploy` I always get this error: ``` Caused by: com.fasterxml.jackson.core.JsonParseException: Unexpected character ('X' (code 88)): expected a valid value (number, String, array, object,...

The `serverless` template (and probably the main `cljs-lambda` template as well) is incompatible with the current (1.9.562) version of ClojureScript. Builds fail because [`java.lang.AssertionError: Assert failed: :nodejs target with :none...

I am trying to do the simple example on the blog post on windows. When running "servless deploy" I got an error: Error -------------------------------------------------- Command failed: lein update-in :cljs-lambda assoc...

Would you be open to including boot support? I am happy to submit a PR for this feature.