
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
hapi-twilio-auth
Advanced tools
Hapi plugin for Twilio request validation.
npm i hapi-twilio-auth
import hapi from '@hapi/hapi'
import hapiTwilioAuth from 'hapi-twilio-auth'
const { Server } = hapi
async function startServer() {
const server = new Server({
port: 3000,
})
await server.register(hapiTwilioAuth)
server.auth.strategy('twilio-auth', 'twilio-signature', {
baseUrl: 'https://mycompany.com/webhooks-path', // your twilio webhooks base url
twilioAuthToken: 'xxxxxxxxxxx', // your twilio auth token
})
server.route({
method: 'POST',
path: '/',
handler(request, h) {
// ...
},
})
await server.start()
}
startServer()
FAQs
Hapi plugin for Twilio webhook authentication
The npm package hapi-twilio-auth receives a total of 58 weekly downloads. As such, hapi-twilio-auth popularity was classified as not popular.
We found that hapi-twilio-auth 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.