hashnode.jovandjukic.comLearn AdonisJS pt. 1Just like many other Node.js backend developers, I spend most of my time building REST API's with Express.js. It's a small, very easy to use HTTP library with a huge amount of middlewares and awesome, large community around it. But I didn't enjoy wor...Nov 12, 2022·3 min read
hashnode.jovandjukic.comThe internship story - Guidelines, resources and my experienceIn my previous post, I mentioned that I used free resources on the internet to learn and prepare myself for the internship interview. I want to elaborate more on that here, describe those resources and suggest a learning path that worked for me. The ...Jul 28, 2022·5 min read
hashnode.jovandjukic.comThe first internship, do we all start like this?Back in 2017 I was still in college. It was boring and I didn't learn much. I came to the conclusion that writing PASCAL and C on a piece of paper isn't going to do much for my future, so I decided to try my luck in the real world. I lived in a small...Jul 11, 2022·6 min read
hashnode.jovandjukic.comNo, you do not have to use Mongodb with Node.jsVast majority of beginner nodejs tutorials use mongodb for the database. For simplicity sake, this is fine for beginners. It saves them the hassle of dealing with SQL table relations, so they can just stick any data in and get it out to render it on ...May 13, 2020·3 min read
hashnode.jovandjukic.comDifference between var, const and letThere are 3 ways to declare a variable in Javascript: using one of the keywords var, const or let. Prior to ES6, var used to be the only way to declare a variable. You had no other choice. However, it had some weird and unexpected behavior, which oft...May 6, 2020·3 min read