Skip to content

Instantly share code, notes, and snippets.

View AlexandreSi's full-sized avatar

AlexandreS AlexandreSi

View GitHub Profile
@AlexandreSi
AlexandreSi / app.ts
Last active December 11, 2025 08:55
Supabase Send Email hook - Signature check with Express Typescript app
import cors from 'cors';
import express from 'express';
import helmet from 'helmet';
import morgan from 'morgan';
const app = express();
app.use(morgan('dev'));
app.use(helmet());
app.use(cors());