1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00

Update docs/sdks/node.md

This commit is contained in:
Christopher Kolstad 2021-02-24 10:52:58 +01:00 committed by GitHub
parent f839a68a65
commit 8039b30ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ id: node_sdk
title: Node SDK title: Node SDK
--- ---
In this guide we explain how to use feature toggles in a Java application using Unleash-hosted. We will be using the open source Unleash [Node.js Client SDK](https://github.com/Unleash/unleash-client-node). In this guide we explain how to use feature toggles in a Node application using Unleash-hosted. We will be using the open source Unleash [Node.js Client SDK](https://github.com/Unleash/unleash-client-node).
> **Important details** > **Important details**
> >
@ -77,4 +77,4 @@ You provide the Unleash context as part of the second argument to the isEnabled
remoteAddress: '127.0.0.1', remoteAddress: '127.0.0.1',
}; };
const enabled = isEnabled('app.demo', context); const enabled = isEnabled('app.demo', context);
``` ```