Skip to content

Instantly share code, notes, and snippets.

@adjeim
adjeim / CORS Cheat Sheet for Express + TypeScript.md
Last active May 30, 2024 21:21
CORS Cheat Sheet for Express + TypeScript
  1. Install cors package and its TypeScript types:
npm install cors
npm install --save-dev @types/cors
  1. Update the entry point of your Express app to allow your server to use cors middleware. Configure your CORS options with the origins you would like to allow.
import express from 'express';