diff --git a/docs/api-reference/storage.md b/docs/api-reference/storage.md index 47d4a99cf8e..f0ddd93c924 100644 --- a/docs/api-reference/storage.md +++ b/docs/api-reference/storage.md @@ -7,7 +7,7 @@ All commands in an extension have shared access to the stored data. Extensions c Values can be managed through functions such as [`LocalStorage.getItem`](storage.md#localstorage.getitem), [`LocalStorage.setItem`](storage.md#localstorage.setitem), or [`LocalStorage.removeItem`](storage.md#localstorage.removeitem). A typical use case is storing user-related data, for example entered todos. {% hint style="info" %} -The API is not meant to store large amounts of data. For this, use [Node's built-in APIs to write files](https://nodejs.dev/en/learn/writing-files-with-nodejs/), e.g. to the extension's [support directory](environment.md#environment). +The API is not meant to store large amounts of data. For this, use [Node's built-in APIs to write files](https://nodejs.org/en/learn/manipulating-files/writing-files-with-nodejs), e.g. to the extension's [support directory](environment.md#environment). {% endhint %} ## API Reference