
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@outray/express
Advanced tools
Express middleware to automatically expose your dev server via Outray tunnel
Express middleware to automatically expose your development server to the internet via Outray tunnel.
npm install @outray/express
import express from 'express'
import outray from '@outray/express'
const app = express()
// Apply Outray middleware
outray(app)
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(3000, () => {
console.log('Server running on port 3000')
})
When you start your server in development mode, you'll see:
Server running on port 3000
➜ Tunnel: https://quick-tiger.outray.app
import express from 'express'
import outray from '@outray/express'
const app = express()
outray(app, {
subdomain: 'my-app',
apiKey: process.env.OUTRAY_API_KEY,
onTunnelReady: (url) => {
console.log('Tunnel ready at:', url)
}
})
app.listen(3000)
interface OutrayPluginOptions {
/** Subdomain to use (requires authentication) */
subdomain?: string;
/** Custom domain (must be configured in dashboard) */
customDomain?: string;
/** API key for authentication */
apiKey?: string;
/** Outray server URL */
serverUrl?: string;
/** Enable/disable tunnel (default: true in development) */
enabled?: boolean;
/** Suppress logs */
silent?: boolean;
/** Callback when tunnel is ready */
onTunnelReady?: (url: string) => void;
/** Callback on error */
onError?: (error: Error) => void;
/** Callback on reconnecting */
onReconnecting?: () => void;
/** Callback on close */
onClose?: () => void;
}
OUTRAY_API_KEY - Your Outray API keyOUTRAY_SUBDOMAIN - Custom subdomainOUTRAY_ENABLED - Set to "false" to disableOUTRAY_SERVER_URL - Custom server URL (default: wss://api.outray.dev/)FAQs
Express middleware to automatically expose your dev server via Outray tunnel
We found that @outray/express demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.