ipseeta.comSecurely Saving Passwords in MongoDB Through Node.jsIt is important to protect sensitive data stored in web application databases from malicious actors. To do this effectively, it is essential that we use hashing instead of storing the data in plaintexFeb 23, 2023路5 min read
ipseeta.comPm2 Cheat SheetHere is a quick cheat sheet of pm2 commands:- Installing pm2 npm install pm2 -g Start and name a process pm2 start app.js --name myApp Start and auto-restart on file change pm2 start app.js --watch List apps pm2 list /*Shows all the processes*/ pm2 p...Jul 7, 2020路1 min read
ipseeta.comBuilding a Todo app using ReactJS and ServerlessLately, I have been experimenting a lot with AWS Lambda and other serverless platforms. To teach myself the concept of serverless I built a simple todo app using AWS Lambda and React. In this article, I am going to outline the steps needed to build s...Feb 8, 2019路8 min read
ipseeta.comFrequently asked JavaScript and Node.js interview questionsI have been helping a friend crack preliminary round of JavaScript/Node.js interviews. In the process I have identified a few must-know questions that are asked in almost all interviews. So, here is a list of such Node.js interview questions with th...Jan 25, 2019路10 min read
ipseeta.com7 different ways to make AJAX calls in JavaScript in 2019Happy New Year 2019! I know I am a bit late but better late than never! 馃槂 My new year resolution is to write something every day, even if it's something basic. Out of curiosity, I have been revisiting various ways to make API calls in JS in 2019. In...Jan 22, 2019路5 min read