blog.ipseeta.devHow AI Changed My Coding Workflow: Real Examples That Boosted My ProductivityA few months ago, I was debugging a small Node.js issue that should have taken five minutes. Instead, I opened about 10 Stack Overflow tabs, skimmed documentation, tried two different fixes, and still2h ago·9 min read
blog.ipseeta.devSecurely 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
blog.ipseeta.devPm2 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
blog.ipseeta.devBuilding 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
blog.ipseeta.devFrequently 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