Read my blogs

Accessing MongoDB URI from Heroku for MERN app

December, 2020

Mostly, people create a dotenv file or a key.js file to store their Mongo URI and then probably add it to gitignore. In my opinion, that’s not the best thing to do, here’s why. If in the future, you wish to make your code publicly available, let’s say on Github, then it could create a security vulnerability in your project and your password might be visible in the repository’s commit history.

Read more

Some Netlify errors and how to solve them.

December, 2020

Netlify is a great platform to easily deploy your web apps within no time. Even so, there are chances you might encounter some errors while doing so. Here I discuss some of the errors which I faced while deploying my apps on Netlify and how I solved them.

Read more

Week 1 : Women Who Code Mentorship Program 3.0

February, 2021

Recently, I got the incredible opportunity to be a mentee in the Women Who Code Mentorship Program 3.0. In this blog, I will be sharing my experience in the first week of this program and what I have learnt so far. All mentees of this program will be writing blogs on their weekly learnings so if you’re someone who wished to be a part of this program but couldn’t, do read such blogs by other mentees as well to stay updated.

Read more

Understanding Promises in JavaScript

May, 2022

For many people new to JavaScript, Promises can be a tricky concept. In order to simplify it, I wrote this blog that talks about the concept of Promises, has examples and pointers to remember in the end.

Read more

Transpiling vs Compiling

January, 2022

In this blog I majorly explain what transpiling is, and what makes it different from compiling. I also share the need for using these along with some examples.

Read more