Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
express-yaschema-api-handler
Advanced tools
Express support for handling APIs declared using yaschema-api.
export const POST = makeHttpApi({
method: 'POST',
routeType: 'rest',
url: '/ping',
isSafeToRetry: true,
schemas: {
request: {
body: schema.object({
echo: schema.string().allowEmptyString().optional()
})
},
successResponse: {
status: schema.number(StatusCodes.OK),
body: schema.string()
}
}
});
…
export const register = (app: Express) => {
registerHttpApiHandler(app, POST, {}, async ({ express: _express, input, output }) => {
output.success(200, { headers: {}, body: (input.body.echo?.length ?? 0) > 0 ? `PONG ${input.body.echo ?? ''}` : 'PONG' });
});
};
Thanks for checking it out. Feel free to create issues or otherwise provide feedback.
Be sure to check out our other Open Source @ Passfolio projects as well.
FAQs
Express handler support for yaschema-api
The npm package express-yaschema-api-handler receives a total of 30 weekly downloads. As such, express-yaschema-api-handler popularity was classified as not popular.
We found that express-yaschema-api-handler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.