Let's talk about Tech.

Authentication with json webtokens

6 min read
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.
#javascript#node js#authentication
Blog content

Deploy nodejs apps on railway

4 min read
In this article, I will show an alternative to Heroku. We will learn how to deploy a node express app to Railway which is free and also has an easy process to deploy your backend apps.
#javascript#node#railaway#deployment
Blog content

Javascript Higher Order functions

3 min read
these are functions that take other functions as arguments or returns a function as a value. The function passed as an argument is called callback
#javascript#functions#arrays
Blog content

Javascript Functions

3 min read
Functions are one of building blocks of javascript. In this article we will discuss what are functions and how to use them in your code
#javascript#functions
Blog content

Javascript reduce function

3 min read
The javascript reduce method is one of the most powerful javascript higher-order functions.
#javascript#functions#arrays#reduce
Blog content