Aditya Adarshadityaadarsh.hashnode.dev·Dec 19, 2024Building a Basic Todo List App with Express.jsIt supports the following tasks and endpoints: Retrieve all todos: GET /todos Retrieve a specific todo by ID: GET /todos/:id Create a new todo: POST /todo Update an existing todo by ID: PUT /todos/:id Delete a todo by ID: DELETE /todos/:id The...#javascipt
Pranjal Ruhelageekymuch.hashnode.dev·Dec 9, 2024Understanding Function Call vs Function Reference in React: A Deep DiveReact's event handling and function calls often leave developers with confusion regarding the performance implications of certain practices. In this article, we will explore the difference between function calls and function references, specifically ...React
Neeraj Guptaminex.hashnode.dev·Nov 25, 2024How to Deploy Todo Apps with Kubernetes: A Step-by-Step GuideThis blog will show how to deploy the todo application with Kubernetes. Pre-requisite We already wrote the Todo application blog with Docker-Compose Deployment, so refer to that blog too.Link: https://minex.hashnode.dev/simple-docker-compose-deployme...1 like·50 readsPython-based Todo App in KubernetesKubernetes
Prathamesh Pichkatefullstackblogs.hashnode.dev·Nov 10, 2024Building a Todo App with React-Redux and Redux ToolkitIntroduction In this blog, we’ll explore how to build a simple Todo application with React-Redux and Redux Toolkit. Redux is a popular state management library, and Redux Toolkit provides a more efficient way to work with Redux in modern React applic...React
Pooja Bhavanipoojabhavani.hashnode.dev·Nov 4, 2024Project-9: 🚀 Setting up a Kubernetes Cluster with MiniKube on AWS: Deploying Django Todo App and Managing Network and Services 🌐Section 1: Setting up a Kubernetes Cluster with MiniKube on AWS 🚀 Why MiniKube? MiniKube is a fantastic lightweight tool that lets you run Kubernetes on your local machine. It's perfect for development, testing, and learning purposes. With MiniKube,...73 readsminikube
Martin Lubowamartinlubowa.hashnode.dev·Oct 25, 2024How to Build a Todo App with Redux Toolkit, API Integration, and Tailwind CSSIn this tutorial, we’re going to build a simple Todo app using Redux Toolkit and React. We’ll also include API integration, so you get real-time data updates, and style it with Tailwind CSS for an easy, modern design. I’ll explain every piece of code...software development
Shikhar Shuklashikhar99.hashnode.dev·Oct 18, 2024Building a Todo App with React, Vite, and Tailwind CSSIn this tutorial, we will build a simple, yet functional, Todo App using React, Vite, and Tailwind CSS. If you're looking to quickly prototype or create a polished application, these tools offer a great combination of speed, flexibility, and ease of ...31 readstodoapp
saileesaileeblog.hashnode.dev·Oct 13, 2024Project 4: Building a To-Do List App – Overcoming Inconsistency and Delivering ResultsProject 4: To-Do List App – A Step Forward in My 40-Day JavaScript Challenge Hello, everyone! I am on a journey to enhance my JavaScript skills through a 40-day project challenge. However, I must admit that consistency has been a struggle for me duri...JavaScript
Brunobrunobuddy.hashnode.dev·Oct 8, 2024Svelte + Manifest = Giving Svelte a proper backend with 7 lines of code 🧡🦚TL;DR: Using Manifest as backend for Svelte turns it into a full stack application with minimal coding. Check the source code on github # manifest/backend.yml name: My TODO App ✅ entities: Todo: seedCount: 10 properties: - title ...Svelte
Vibhuti Jainvibhutijain.hashnode.dev·Sep 12, 2024Day 25 Task: Complete Jenkins CI/CD Project - Continued with DocumentationSetup GitHub repository for source code and CI Github Repo - https://github.com/Vibhuti456/node-todo-cicd Setup Job on Jenkins for application Create two EC2 instance one Jenkins master and another Jenkins Slave: Jenkins Master: The Jenkins Mas...documentation