Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@serverless/aws-api-gateway
Advanced tools
Instantly deploy REST APIs on AWS API Gateway with very simple configuration using [Serverless Components](https://github.com/serverless/components).
Instantly deploy REST APIs on AWS API Gateway with very simple configuration using Serverless Components.
$ npm install -g @serverless/components
Just create a serverless.yml
file
$ touch serverless.yml
$ touch .env # your development AWS api keys
$ touch .env.prod # your production AWS api keys
the .env
files are not required if you have the aws keys set globally and you want to use a single stage, but they should look like this.
AWS_ACCESS_KEY_ID=XXX
AWS_SECRET_ACCESS_KEY=XXX
# serverless.yml
name: my-api
myLambda:
component: "@serverless/aws-lambda"
inputs:
name: ${name}-lambda
code: ./code
handler: index.handler
myApiGateway:
component: "@serverless/aws-api-gateway"
inputs:
name: ${name}-gateway
routes:
/foo:
get:
function: ${comp:myLambda.arn} # pass in the arn output property from the lambda component
cors: true
api (master)$ components
myLambda › outputs:
name: 'my-api-lambda'
description: 'AWS Lambda Component'
memory: 512
timeout: 10
code: './code'
bucket: undefined
shims: []
handler: 'index.handler'
runtime: 'nodejs8.10'
env:
role:
name: 'my-api-lambda'
arn: 'arn:aws:iam::552760238299:role/my-api-lambda'
service: 'lambda.amazonaws.com'
policy: { arn: 'arn:aws:iam::aws:policy/AdministratorAccess' }
arn: 'arn:aws:lambda:us-east-1:552760238299:function:my-api-lambda'
myApiGateway › outputs:
name: 'my-api-gateway'
role:
name: 'my-api-gateway'
arn: 'arn:aws:iam::552760238299:role/my-api-gateway'
service: 'apigateway.amazonaws.com'
policy: { arn: 'arn:aws:iam::aws:policy/AdministratorAccess' }
routes:
/foo: { get:
{ function:
'arn:aws:lambda:us-east-1:552760238299:function:my-api-lambda',
cors: true } }
id: 'z2itxmsoud'
url: 'https://z2itxssoud.execute-api.us-east-1.amazonaws.com/dev/'
urls: [ 'https://z2itxssoud.execute-api.us-east-1.amazonaws.com/dev/foo' ]
7s › dev › my-api › done
api (master)$
Checkout the Serverless Components repo for more information.
FAQs
The complete AWS API Gateway Framework, powered by [Serverless Components](https://github.com/serverless/components).
The npm package @serverless/aws-api-gateway receives a total of 2 weekly downloads. As such, @serverless/aws-api-gateway popularity was classified as not popular.
We found that @serverless/aws-api-gateway demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.