![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@spytecgps/serverless-axiom-layer-plugin
Advanced tools
This plugin will add Axiom layer to your lambda functions
This Serverless plugin automates the integration of the Axiom layer into your Serverless functions.
npm install --save-dev @spytecgps/serverless-axiom-layer-plugin
Add the plugin to your serverless.yml
:
plugins:
- '@spytecgps/serverless-axiom-layer-plugin'
Specify the Axiom plugin configuration:
custom:
axiom:
account: YOUR_AXIOM_ACCOUNT # Default: 694952825951
layerVersion: YOUR_AXIOM_LAYER_VERSION # Default: 11
defaultArchitecture: YOUR_DEFAULT_ARCHITECTURE # Default: x86_64
enabled: true/false # Default: true
fullLayerArn: THE_FULL_AXIOM_LAYER_ARN # Default: null
If the fullLayerArn
is defined, it will be used without any automatic layer creation. Hence, the account
, layerVersion
and defaultArchitecture
will be ignored.
Is possible to only define the fullLayerArn
or layerVersion
inside a specific function:
function:
handler: 'src/index.run'
axiom:
fullLayerArn: THE_FULL_AXIOM_LAYER_ARN # Default: null
layerVersion: YOUR_AXIOM_LAYER_VERSION # Default: null
If the fullLayerArn
or layerVersion
is defined at the function level, it will take predecedence over the custom.axiom
, if it's defined.
Run serverless deploy
to deploy your function with the Axiom layer.
For a correct plugin uninstall:
serverless plugin uninstall --name '@spytecgps/serverless-axiom-layer-plugin'
MIT License
FAQs
This plugin will add Axiom layer to your lambda functions
The npm package @spytecgps/serverless-axiom-layer-plugin receives a total of 37 weekly downloads. As such, @spytecgps/serverless-axiom-layer-plugin popularity was classified as not popular.
We found that @spytecgps/serverless-axiom-layer-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.