
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
node-serverless-helpers
Advanced tools
Node Serverless Helpers is a package meant to make your life easier when developing lambda functions in NodeJS. It handles events seamlessly and adds useful defaults, helpers and functions to your project.
The documentation can be found in the Wiki.
Install the package with npm or yarn.
npm install node-serverless-helpers
# or
yarn add node-serverless-helpers
Here is a sample working code.
// handler.js
'use strict';
const handle = require('node-serverless-helpers').handle;
module.exports.helloWorld = handle(async (event) => {
return 'hello lambda world!';
});
# serverless.yaml
service: hello-world
provider:
name: aws
runtime: nodejs8.10
region: us-east-1
functions:
hello:
handler: handler.helloWorld
events:
- http:
path: ''
method: get
The important part is the handle function that does 3 things.
init function. You can register init handlers by calling
the register function.FAQs
Helpers to simplify nodejs code on FASS environments
The npm package node-serverless-helpers receives a total of 259 weekly downloads. As such, node-serverless-helpers popularity was classified as not popular.
We found that node-serverless-helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.