ABAbhinav Bistinabhinav-bist.hashnode.dev·5d ago · 5 min readHow ChatGPT Understands Your Questions?What is a LLM ? What LLM stands for ? LLM is the abbreviation for Large Language models . Let us break it down what does the term LLM means. LLM's are AI systems that are trained on huge amounts of 00
ABAbhinav Bistinabhinav-bist.hashnode.dev·Jun 24 · 2 min readSetting up your first Node.js ApplicationIf you are setting up Node.js for the first time here is a step by step guide 1. Installing Node.js Go to Node.js official site . Download the LTS (Long-Term Support) version. It includes: Node.js r00
ABAbhinav Bistinabhinav-bist.hashnode.dev·May 10 · 3 min readHow Node.js Handles Multiple Requests with a Single ThreadSingle-threaded nature of Node.js Node.js uses only one main thread to execute the JavaScript code . Traditional model Request 1 → Thread 1 Request 2 → Thread 2 Request 3 → Thread 3 Creating many t00
ABAbhinav Bistinabhinav-bist.hashnode.dev·May 9 · 2 min readURL Parameters vs Query Strings What are URL parameters? URL parameters are dynamic values inside the URL path that help identify the specific resource . They are commonly used with frameworks like Express.js for routing . In Expr00
ABAbhinav Bistinabhinav-bist.hashnode.dev·May 9 · 4 min readStoring and serving files in Express Where uploaded files are stored Uploaded files could be stored on different places depending on the architecture of the application . 1. Local Storage project/ │ ├── uploads/ │ ├── image1.png │ ├00