
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
serverless-micro
Advanced tools
this is the serverless plugin to help manage multiple micro services under one main service.
Serverless framework plugin to help manage multiple micro services under one main service.
A limit of Cloudformation is it can only hold 200 objects. This becomes problematic when you are dealing with even a medium sized API and the Serverless framework. This plugin aims to split up the methods outlined in the main Serverless file, to multiple services, and give you the flexibility to deploy those services individually.
This plugin does not setup a main API Gateway file for you, although it is a major priority. Currently, this still has to be managed using AWS and API Gateway.
Install the plugin from npm
$ npm install --save-dev serverless-micro
Add the plugin to your serverless.yml
# serverless.yml
plugins:
- serverless-micro
Add the service name to each of your methods.
# serverless.yml
functions:
# Stories
fetchStories:
handler: "handlers/fetchStories"
events:
- http:
path: /stories
method: get
service: stories
# Podcasts
fetchPodcasts:
handler: "handlers/fetchPodcasts"
events:
- http:
path: /podcasts
method: get
service: podcasts
# Videos
fetchVideos:
handler: "handlers/fetchVideos"
events:
- http:
path: /videos
method: get
service: videos
Once services are setup deploy using new hook.
$ sls deploy micro --service stories
$ sls deploy micro --service stories --stage prod
$ sls deploy micro --service stories --stage prod --function fetchStories
We welcome pull requests! Please fork the repo and submit your PR. http://mcsorleys.barstoolsports.com/feed/the-podfathers
FAQs
this is the serverless plugin to help manage multiple micro services under one main service.
The npm package serverless-micro receives a total of 0 weekly downloads. As such, serverless-micro popularity was classified as not popular.
We found that serverless-micro 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.