From 92e6eef905c575feeab18870d728d86f0f94c9f8 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 13 Oct 2022 15:52:09 +0200 Subject: [PATCH] docs: add link to node js sdk --- website/docs/topics/the-anatomy-of-unleash.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/topics/the-anatomy-of-unleash.mdx b/website/docs/topics/the-anatomy-of-unleash.mdx index 882588c87f..d39a9d5f30 100644 --- a/website/docs/topics/the-anatomy-of-unleash.mdx +++ b/website/docs/topics/the-anatomy-of-unleash.mdx @@ -149,7 +149,7 @@ Because you’d like to see the new color scheme while you’re developing it, y You configure an [Unleash SDK for your server](../sdks/index.md) to communicate with Unleash. When rendering the page, you check the state of the new-color-scheme feature and render a different stylesheet based on the results. -In pseudocode that might look like this: +In pseudocode (loosely based on the [Node.js SDK](../sdks/node.md)), that might look like this: ```js if (unleash.isEnabled(“new-color-scheme”)) {