
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
@studio/gateway
Advanced tools
A custom Swagger server and compiler with AWS Lambda and mock integration, for local API Gateway testing.
$ref to external files - compiles to single AWS compatible fileAssuming a swagger.json file in the current directory:
const Gateway = require('@studio/gateway');
const Lambda = require('@studio/lambda');
const lambda = Lambda.create();
const gateway = Gateway.create()
gateway.on('lambda', lambda.invoke);
gateway.listen(1337);
gateway = Gateway.create([options]): Returns a new gateway server
for the given options.
swagger_file: The swagger file to read. Defaults to swagger.json.swagger_env: The dotenv config to read.stage: The stage name to use. Defaults to "local".stageVariables: The stage variables to use. Default to an empty object.gateway.listen(port[, callback]): Bind the server to the given port.lambda(name, event, context, callback): When a Lambda integration should be
invoked. See @studio/lambda for a custom Lambda execution environment.This module ships with a swagger command to compile a swagger.json file with
references to other files into a single AWS compatible file.
Use in npm scripts like this:
{
"scripts": {
"swagger:prod": "swagger -o target/swagger-prod.json"
}
}
The swagger optionally loads the dotenv module and replaces environment
${variables}.
These options are supported:
-f, --file: Sets the name of the swagger file. Defaults to swagger.json.-e, --env: Sets the path to a dotenv config file.-o, --outfile: Defines the output file to write to. If not specified, the
result is printed to standard out.Note that all environment variables can be used. When using npm scripts as
shown above, you can also do things like ${npm_package_version}.
FAQs
JavaScript Studio Gateway
The npm package @studio/gateway receives a total of 74 weekly downloads. As such, @studio/gateway popularity was classified as not popular.
We found that @studio/gateway demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.