From ef2240a6660eaadb20f058c4a933cb7a60517a96 Mon Sep 17 00:00:00 2001 From: Jim Lynch Date: Thu, 5 Jul 2018 11:02:41 -0400 Subject: [PATCH] Update README.md (#1484) adding in the necessary require statement (in nodejs). --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d1f94c8..777b5a4 100755 --- a/README.md +++ b/README.md @@ -53,6 +53,8 @@ Using cdn: Performing a `GET` request ```js +const axios = require('axios'); + // Make a request for a user with a given ID axios.get('/user?ID=12345') .then(function (response) {