Using TypeScript comes with the benefit of having your IDE or editor type-check everything in your project. Another benefit is that you get IntelliSense in all places where it’s possible. But you don’t get IntelliSense when working with Node.js request headers. We can change that by creating our own, strict type for HTTP request headers.
This tutorial shows you how to tighten the types for Node.js request headers to support IntelliSense during development and compile time.
Node.js Series Overview
- Increase the Memory Limit for Your Process
- Why You Should Add “node” in Your Travis Config
- Create a PDF from HTML with Puppeteer and Handlebars
- Create Your Own Custom Error
- Retrieve a Request’s IP Address in Node.js
- Detect the Node.js Version in a Running Process or App
- How to Base64 Encode/Decode a Value in Node.js
- Check if a Value Is Null or Undefined in JavaScript or Node.js
- How to Fix “Uncaught SyntaxError: Cannot use import statement outside a module”
- Fix „Socket Hang Up“ Errors
- Nested Destructuring in JavaScript or Node.js
- Cache Computation Results in a Local Variable
- ESM Bypass Cache for Dynamic Imports
- How to Fix ESM Error “Directory import is not supported resolving ES modules imported”
- String Replace All Appearances
- Remove All Whitespace From a String in JavaScript
- Generate a Random ID or String in Node.js or JavaScript
- Remove Extra Spaces From a String in JavaScript or Node.js
- Remove Numbers From a String in JavaScript or Node.js
- Get the Part Before a Character in a String in JavaScript or Node.js
- Get the Part After a Character in a String in JavaScript or Node.js
- How to Check if a Value is a String in JavaScript or Node.js
- Check If a String Includes All Strings in JavaScript/Node.js/TypeScript
- Check if a Value is a String in JavaScript and Node.js
- Limit and Truncate a String to a Given Length in JavaScript and Node.js
- Split a String into a List of Characters in JavaScript and Node.js
- How to Generage a UUID in Node.js
- Reverse a String in JavaScript or Node.js
- Split a String into a List of Lines in JavaScript or Node.js
- Split a String into a List of Words in JavaScript or Node.js
- Detect if a String is in camelCase Format in Javascript or Node.js
- Check If a String Is in Lowercase in JavaScript or Node.js
- Check If a String is in Uppercase in JavaScript or Node.js
- Get the Part After First Occurrence in a String in JavaScript or Node.js
- Get the Part Before First Occurrence in a String in JavaScript or Node.js
- Get the Part Before Last Occurrence in a String in JavaScript or Node.js
- Get the Part After Last Occurrence in a String in JavaScript or Node.js
- How to Count Words in a File
- How to Shuffle the Characters of a String in JavaScript or Node.js
- Append Characters or Words to a String in JavaScript or Node.js
- Check if a String is Empty in JavaScript or Node.js
- Ensure a String Ends with a Given Character in JavaScript or Node.js
- Left-Trim Characters Off a String in JavaScript or Node.js
- Right-Trim Characters Off a String in JavaScript or Node.js
- Lowercase the First Character of a String in JavaScript or Node.js
- Uppercase the First Character of a String in JavaScript or Node.js
- Prepend Characters or Words to a String in JavaScript or Node.js
- Check if a String is a Number
- Convert a String to Buffer
- Prevent Line Breaks in String Template Literals
- How to Implement a Custom `toString` Method (Coming soon)
- What Is `Symbol.toStringTag` and How to Use It (Coming soon)
- Get Number of Seconds Since Epoch in JavaScript
- Get Tomorrow’s Date in JavaScript
- Increase a Date in JavaScript by One Week
- Add Seconds to a Date in Node.js and JavaScript
- Add Month(s) to a Date in JavaScript or Node.js
- Add Week(s) to a Date in JavaScript or Node.js
- Get the Current Year in JavaScript or Node.js
- How to Get a UNIX Timestamp in JavaScript or Node.js
- How to Convert a UNIX Timestamp to a Date in JavaScript or Node.js
- Add Days to a Date in JavaScript or Node.js
- Get Yesterday's Date in JavaScript or Node.js
- Add Minutes to a Date in JavaScript or Node.js
- Add Hours to a Date in JavaScript or Node.js
- Check If a Date Is Today in JavaScript or Node.js
- Check If a Date is Tomorrow in JavaScript or Node.js
- Check If a Date is Yesterday in JavaScript or Node.js
- How to Format a Date YYYY-MM-DD in JavaScript or Node.js
- Convert a Date to UTC in JavaScript or Node.js (Coming soon)
- Get Number of Days in a Month (Coming soon)
- How to Run an Asynchronous Function in Array.map()
- How to Reset and Empty an Array
- for…of vs. for…in Loops
- Clone/Copy an Array in JavaScript and Node.js
- Get an Array With Unique Values (Delete Duplicates)
- Sort an Array of Integers in JavaScript and Node.js
- Sort a Boolean Array in JavaScript, TypeScript, or Node.js
- Check If an Array Contains a Given Value in JavaScript or Node.js
- Add an Item to the Beginning of an Array in JavaScript or Node.js
- Append an Item at the End of an Array in JavaScript or Node.js
- How to Exit and Stop a for Loop in JavaScript and Node.js
- Split an Array Into Smaller Array Chunks in JavaScript and Node.js
- How to Get an Index in a for…of Loop in JavaScript and Node.js
- How to Exit, Stop, or Break an Array#forEach Loop in JavaScript or Node.js
- Retrieve a Random Item From an Array in JavaScript or Node.js
- How to Reverse an Array in JavaScript and Node.js
- Sort an Array of Strings in JavaScript, TypeScript or Node.js
- Sort an Array of Objects in JavaScript, TypeScript or Node.js
- Check If a Value Is an Array in JavaScript or Node.js
- Join an Array of Strings to a Single String Value
- Create and Fill an Array Containing N Items
- Callback and Promise Support in your Node.js Modules
- Run Async Functions/Promises in Sequence
- Run Async Functions/Promises in Parallel
- Run Async Functions in Batches
- How to Fix “Promise resolver undefined is not a function” in Node.js or JavaScript
- Detect if Value Is a Promise in Node.js and JavaScript
- Overview of Promise-Based APIs in Node.js
- Thenables and Creating Your Own Promises
- Generate a Random Number in Range With JavaScript/Node.js
- Ensure a Positive Number in JavaScript or Node.js
- Check if a Number Is Infinity
- Check If a Number has Decimal Places in JavaScript or Node.js
- Use Numeric Separators for Better Readability
- Convert Boolean to Number
- Convert Number to Boolean
- Check if a Value is a Number
- How to Merge Objects
- How to Check if an Object is Empty in JavaScript or Node.js
- How to CamelCase Keys of an Object in JavaScript or Node.js
- How to Snake_Case Keys of an Object in JavaScript or Node.js
- How to Destructure a Dynamic Key in JavaScript or Node.js
- How to Get All Keys (Including Symbols) from an Object in JavaScript or Node.js
- How to Delete a Key From an Object in JavaScript or Node.js
- Iterate Through an Object’s Keys and Values in JavaScript or Node.js
- How to Convert URLSearchParams to Object
- Check If a Value Is an Object in JavaScript or Node.js
- Conditionally Add Properties to an Object in JavaScript or Node.js
- How to Lowercase Keys of an Object in JavaScript or Node.js
- Unset an Object Property
- Get a File’s Created Date
- Get a File’s Last Modified or Updated Date of a File
- How to Create an Empty File
- Check If a Path or File Exists
- How to Rename a File
- Check If a Path Is a Directory
- Check If a Path Is a File
- Retrieve the Path to the User’s Home Directory
- How to Touch a File
- Read File Content as String
- Check If a Directory Is Empty
- How to Create a Directory (and Parents If Needed)
- Get a File‘s Extension
- Get the Size of a File
- Get a File Name (With or Without Extension)
- Read a JSON File
- Delete a File From Disk
- Check if a Path is a SymLink (Symbolic Link)
- Check if a Path is a Socket
- Check if a Path is a FIFO File (Named Pipe)
- Check if a Path is a File URL
- Handling `fs.Stats` Constructor is Deprecated
- What is `Fs.realpath`?
- How to Download a File
- Strict Type for Request Headers with TypeScript
The Default Types for HTTP Request Headers in Node.js
The types for IncomingHttpHeaders
in Node.js (at least version 20) provide a list of common headers. Also, that type extends a dictionary. The Node.js dictionary type is an index signature to open up a type for any key-value pair that is not known upfront:
interface IncomingHttpHeaders extends NodeJS.Dict<string | string[]> {
accept?: string | undefined;
"accept-language"?: string | undefined;
…
vary?: string | undefined;
"www-authenticate"?: string | undefined;
}
interface Dict<T> {
[key: string]: T | undefined;
}
The problem with this type definition is that
- the index signature throws type narrowing and IntelliSense out the window
- you can’t use IntelliSense for the HTTP request header keys
Typed Request Headers in Node.js
We want to conceal the type for Node.js HTTP request headers to the list of known keys. Also, we want to provide a way for developers to extend the concealed, typed list of request headers so that IntelliSense provides the extended values, too.
You can achieve that by creating a new type for the HTTP request headers.
First, remove the index signature from the IncomingHttpHeaders
interface. You can remove the index signature using key re-mapping. We have a dedicated tutorial on removing the index signature from TypeScript types here on Future Studio:
import { IncomingHttpHeaders } from 'node:http2'
export type RemoveIndexSignature<T> = {
[K in keyof T as string extends K
? never
: number extends K
? never
: symbol extends K
? never
: K
]: T[K];
}
/**
* This type copies over all properties from the `IncomingHttpHeaders` type
* except the index signature. The index signature is nice to use custom
* HTTP headers, but it throws away IntelliSense which we want to keep.
*/
export type HttpDefaultRequestHeaders = RemoveIndexSignature<IncomingHttpHeaders>
Your created HttpDefaultRequestHeaders
type contains all request headers. You can access each header by its name. Here’s a preview in Visual Studio code when using a property with type keyof HttpDefaultRequestHeaders
:
Create an Extendable HTTP Request Headers Interface
You created a strict type for request headers in the previous section. The created type contains a set of common HTTP header keys and provides strict typing in your project. But you can use any HTTP request header that’s not part of your type. For example, there’s no request header for rate limiting like X-Rate-Limit
.
You can solve this problem too by creating an extendable TypeScript type. Extendable types are interfaces because they support declaration merging.
Create an interface for HTTP request headers that extends the previously created, strict type. You may also add your custom request headers already. Here’s a HttpRequestHeaders
interface that you can use in your project:
/**
* This `HttpRequestHeaders` interface can be used to extend the default
* HTTP headers with custom header key-value pairs. The HTTP request
* picks up the custom headers and keeps IntelliSense for the dev.
*/
export interface HttpRequestHeaders extends HttpDefaultRequestHeaders {
'X-Rate-Limit': string | undefined
}
Use the HttpRequestHeaders
interface in your code when you’re accessing HTTP request headers:
Awesome!
The Supercharge Node.js Framework
This tutorial resulted from our pains with HTTP request headers while developing the Supercharge Node.js framework. We wanted strict types for request headers and also allow developers to extend that list.
The Supercharge framework uses this approach of providing strictly typed HTTP request headers. It creates a pleasant developer experience and you can freely extend the list of available headers. You should have a look 🙂
Enjoy strictly typed HTTP request headers in Node.js!