Author: Shivang Shandilya
-
My Journey of DevRel Cohort at Keploy
In the vast world of technology, there’s a constant need for individuals who not only possess technical expertise but also excel in building meaningful connections with the developer community. These individuals are often referred to as Developer Relations (DevRel) professionals, and their role is crucial in bridging the gap between developers and the products or…
-
Building a GO CRUD Rest API from scratch
Thanks to Francesco Ciulla for making a detailed video on how to create this go crud API which was really helpful to understand concepts. I have created a GO CRUD API which keeps account of Mens 100m Race using: Mux (Framework to build web servers in Go) Postgres (relational database) Docker (for containerization) Docker Compose…
-
Exploring GraphQL 101: A Modern Approach to API Development
In recent years, GraphQL has gained significant traction as a powerful alternative to traditional RESTful APIs. Developed by Facebook, GraphQL offers a more flexible and efficient way to query and manipulate data. In this blog post, we will delve into the fundamentals of GraphQL 101, its advantages, and how to implement GraphQL APIs. Let’s first…
-
SOAP vs REST API: Choosing the right API protocol
What is an API? So let’s first take a look at what API is all about. So an API, which stands for Application Programming Interface, is like a messenger that allows different software applications to talk to each other and share information or functionality. Now that you got an idea of what an API is…