A CasperJS node.js app for Amazon Lambda.
Based on node-lambda-template using node-lambda.
The app includes a PhantomJS binary (i.e., in root directory named: phantomjs
) compiled for AWS Linux (https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-linux-x86_64.tar.bz2).
This describes the app directory structure & conventions.
. # project root directory
├── node_modules # project dependencies directory
│ ├── .bin # node_modules bin directory
│ ├── casperjs # casperjs executable
│ ├── phantomjs # phantomjs executable
│ └── ... # etc
├── bin # bin directory
│ ├── phantomjs # local phantomjs executable
│ └── ... # etc
├── src # source files
│ ├── scripts # directory contains all casperjs scrapping scripts.
│ │ ├── sample-script.js # sample casperjs script
│ │ └── ... # etc
│ ├── runner.js # dynamic casperjs script runner
│ ├── utils.js # utility functions inside here.
│ └── ... # etc
├── test # directory contains test files
│ ├── basic.js # sample basic test
│ └── ...
├── .env # it is where you place your AWS deployment configuration
├── .gitignore # exclude files/etc to be tracked & pushed on git (i.e., local configuration, credentials, dependencies, etc.)
├── deploy.env # it has the same format as `.env`, but is used for holding any environment/config variables that you need to be deployed with your code to Lambda but you don't want in version control (e.g. DB connection info)
├── event.json # it is where you mock your event
├── index.js # app main entry point
├── package.json # project details (i.e., version, author info, dependencies, etc.)
├── README.md # project documentation guide.
└── ... # etc
Clone the project:
$ git clone https://github.com/narainsagar/node-casperjs-aws-lambda.git
Install dependencies using npm. It'll install the AWS SDK as well as PhantomJS on the development machine.
$ npm install # OR $ npm i
After installing use the following npm
commands as described below. They're only wrapping the node-lambda
functionality to allow node-lambda
to be installed only locally. Additional params can be provided using -- args
. For a list of available options see the node-lambda
documentation.
There are the 3 available commands:
Run the setup command to generate the environment file with the configuration used for the Amazon Lambda function. Edit the resulting .env
file with your custom settings.
For this you need to have aws account and fill out confuguration in .env
file:
AWS_ENVIRONMENT=development
AWS_ACCESS_KEY_ID=your_key
AWS_SECRET_ACCESS_KEY=your_secret
AWS_ROLE_ARN=your_amazon_role
AWS_REGION=us-east-1
AWS_FUNCTION_NAME=
AWS_HANDLER=index.handler
AWS_MODE=event
.....
.....
AWS_RUNTIME=nodejs6.10
....
$ ./node_modules/.bin/node-lambda setup
# OR
$ npm run setup # yarn run setup
To run the function locally execute the following command.
$ ./node_modules/.bin/node-lambda run
# OR
$ npm run start # yarn run start
Run the following command to deploy the app to Amazon Lambda.
$ ./node_modules/.bin/node-lambda deploy
# OR
$ npm run deploy # yarn run deploy
For running tests:
$ npm run test # yarn test
For more about commands visit node_lambda
repository here
Note: npm version 2.x or newer required to pass arguments to the scripts using
-- args
- Star our GitHub Repository ⭐
- Fork our GitHub Repository 👈
- Create pull requests, submit bugs, suggest new features or documentation updates 🔧
My name is Narain Sagar, I’m a FullStack JavaScript Developer, lives in Karachi, Pakistan and pretty much enjoying my life.
Website | Twitter | LinkedIn | Facebook | Github | Stack Overflow
MIT © Narain Sagar