diff --git a/content/guides.json b/content/guides.json index 58cbb698d..5fab890b5 100644 --- a/content/guides.json +++ b/content/guides.json @@ -1,4 +1,14 @@ [ + { + "id": "http-basic-authentication", + "title": "HTTP Basic Authentication", + "description": "Learn what is HTTP Basic Authentication and how to implement it in Node.js", + "isNew": true, + "type": "textual", + "authorUsername": "kamranahmedse", + "updatedAt": "2022-10-03T19:59:14.191Z", + "createdAt": "2022-10-03T19:59:14.191Z" + }, { "id": "basics-of-authentication", "title": "Basics of Authentication", diff --git a/content/guides/http-basic-authentication.md b/content/guides/http-basic-authentication.md new file mode 100644 index 000000000..bec2185ca --- /dev/null +++ b/content/guides/http-basic-authentication.md @@ -0,0 +1,93 @@ +Our last guide was about the [basics of authentication](/guides/basics-of-authentication), where we discussed authentication, authorization, types of authentication, authentication factors, authentication strategies, and so on. + +In this guide today, we will be learning about basic authentication, and we will see how we can implement Basic Authentication in Node.js. We have a [visual guide on the basic authentication](/guides/basic-authentication) and an illustrative video, watch the video below or continue reading: + +