Posts

Showing posts from September, 2024

Notes on 3rd round of Node.js, Express.js, Mongoose and MongoDB tutorials with quick refresher of (simple) Blog full stack app

Last updated on 30 Sep. 2024 Note: I had done first and second round of Full Stack (MERN) web development based on my roadmap with second round getting over sometime in March 2024. The first and second round notes of sections  related to Node, Express, Mongoose and MongoDB can be viewed here:  https://raviswdev.blogspot.com/2024/03/learning-web-app-development-through.html#nodejsexpressjs .  I don't think there is a clear differentiation between notes of 1st and 2nd rounds. 24 Sep. 2024: Started refreshing my Node.js and Node Express learning. I think the last time I did non-trivial Node.js, Express (or Mongoose/MongoDB) was in March 2024. So there has been a break of around 6 months. https://www.mongodb.com/developer/languages/javascript/getting-started-with-mongodb-and-mongoose/ In express tutorial, methods-public\styles.css uses: h5 + h5 {   margin-left: 1rem; } ---- The '+' is an adjacent sibling selector. Ref: '+ (plus) Sign:' section in Understand '+'...

Notes on 3rd round of Next.js official tutorial

Last updated on 1 Oct. 2024 Note: Previous rounds are covered in:  Notes on learning Next.js - 1st round and 2nd round .   8 Sept. 2024: Starting 3rd round of Next.js official tutorial. First I am reading through its React tutorial (not trying out). [Update: Finished the 3rd round on 24 Sept. 2024]. How To Create A Next.Js App With Serverless?, https://www.saffrontech.net/blog/how-to-create-a-nextjs-app-with-serverless , Jan. 2024 . Article explains serverless architecture in the context of Next.js. Around half-way down the article, how to create a serverless Next.js app is covered. Special steps are involved (e.g. installing 'serverless' framework and then running 'serverless create ...' command). I guess that means that the projects I have done so far in Next.js are NOT serverless including the official Next.js tutorial. Chapter 4, Getting Started with React, https://nextjs.org/learn/react-foundations/getting-started-with-react has a nice simple example of using Reac...