aws-lambda-rss-feed-from-s3 icon indicating copy to clipboard operation
aws-lambda-rss-feed-from-s3 copied to clipboard

Setting up in Lambda

Open Jim556 opened this issue 4 years ago • 1 comments

Hi, I'm not new to programmig or to AWS but I am new to node.js and Lambda. How ever I try to set this up I get "Error: Cannot find module 'rss'". I know I just don't have something set up right. Is there something you could recommend online as a Lambda primer? Or are there more detailed instructions on implementing this?

Thanks, and thank you for posting this!

Jim556 avatar Feb 18 '21 20:02 Jim556

Hello, for node js apps, the most popular package manager is called npm (try https://docs.npmjs.com/getting-started if you're new). For Error: Cannot find module 'rss', this likely means that you've not setup npm right or installed the rss package (https://www.npmjs.com/package/rss) properly. For using nodejs and lambda, I'd recommend checking out the official docs here: https://docs.aws.amazon.com/lambda/latest/dg/lambda-nodejs.html. I'd recommend using http://stackoverflow.com/ for more general questions (like you've asked here), and use github issues for issues specific to this repo, since the SO community will likely be better equipped to answer your questions more quickly.

bwjjohnson avatar Feb 20 '21 08:02 bwjjohnson