Create a Simple API with Hono________________________________________________ What’s API An API is a set of rules that allows different software applications to communicate. It acts as a bridge that delivers your request to a server and sends the response back to you. __________...Jan 13, 2026·2 min read
A Simple FlowchartWhat’s Flow Chart A flow chart is a diagram that shows the steps of a process or decision using symbols and arrows. — ChatGPT Flowchart shapes Flowcharts have many forms, including: Example The Flow: The process starts when a new student opens th...Sep 18, 2025·2 min read
A Little About HonoWhat’s Hono? Hono is a small and fast web framework for building APIs and web apps in JavaScript and TypeScript. It is lightweight, modern, and works across different runtimes like Node.js, Bun, and Deno. _____________________________________________...Sep 15, 2025·2 min read
Simple CRUD Object Into Array in JavaScriptHey everyone! In this article, we're gonna learn how to do some simple CRUD stuff with objects inside an array using JavaScript. Create object into array let itemList = [ { code: "BRG001", name: "Soap", price: 1.3, qty: 10}, { code: "BRG002", n...Sep 11, 2025·2 min read
Node.js Mini Calculatorokay you can follow me for create mini calculator with nodejs first open your gitbash go to your folder create file input2.js and fill in the file as follows create file calculator and fill like this and this code for content file impor...Sep 8, 2025·2 min read
A Little About NPMWhat’s NPM NPM ( Node Package Manager ) is the official package manager for Node.js or in python you can call this it PIP Its use Installing libraries or packages from outside Manage dependencies ( library required by the project ) Provides a regi...Sep 6, 2025·2 min read
3 Best Practice In PostgerSQL3 Big Point Each column has only one value All non-key columns must be fully dependent on the primary key, not just partially There should be no transitive dependencies, that is, non-key columns depending on other non-key columns. Example create...Sep 4, 2025·1 min read