Utkarsh Dhimanutkarshdhiman.hashnode.dev·Aug 29, 2024How to Set Up Absolute Imports in Node.js and TypeScript with NodemonTLDR Switching from relative to absolute imports in TypeScript can greatly enhance code readability and manageability. By updating the tsconfig.json settings to use a fixed path from your project's root, you can simplify import statements. Additiona...Discuss·35 readsExpress
Jayshree Sadangijayce10.hashnode.dev·Aug 7, 2024Master Dependency Management in package.json : A Comprehensive GuideIn the domain of modern web development, the mastery of dependency management is crucial for constructing robust and high-performing applications. Whether you are fine-tuning a modest personal project or orchestrating a comprehensive enterprise solut...Discuss·10 likes·38 readssoftware development
Pulkitblogs.devpulkit.in·Jul 27, 2024How I Created npx devpulkit to Share My DetailsCreating a personalized command-line tool can be a fun and efficient way to share your details with others. In this article, I'll walk you through how I created npx devpulkit. Whether you're a developer looking to showcase your portfolio or someone w...Discuss·2 likesnpm
Amanstranzer.hashnode.dev·Apr 13, 2024Difference between package.json and package-lock.jsonUnderstanding package.json and package-lock.json in Node.js Projects When you embark on your journey with Node.js development, one of the first things you encounter is the package.json file. This file serves as the backbone of your project, containin...Discuss·1 likeNode.js
Shahab Movahhediblog.shmovahhedi.com·Feb 7, 2024Some`yarn pack` Command NotesSome issues I had with the yarn pack command. I'm using Yarn Berry v4.0.2 Notes It reformats package.json: Remove the EOF empty line Converts indentation to 2 spaces Changes the EOL to LF Does not pack .yarnrc.yml Does not pack .gitignoreDiscussyarn pack
Shreyas Ananthshreyasananth.hashnode.dev·Nov 7, 2023Unlocking the Caret Mystery: Navigating ^ in Node.js DependenciesIntroduction Note: The caret (^) in your package.json stands as a silent sentinel, guarding the delicate balance between stability and updatability in Node.js projects. This single character is pivotal, subtly influencing the versions of dependencies...Discuss·707 readsdependencies
Giver KdkforGiver's NodeJS Bloggiver-node.hashnode.dev·Nov 7, 2023Node.js: npm & package.jsonWhat is NPM? It is the world's largest JavaScript package library. It has command-line tools to install and manage the packages. Once, you install Node.js on your computer, 'npm' comes with it. NPM commands are as follows: npm install [Installs pack...Discussnpm
Emmanuel Omemgbojisignordev.hashnode.dev·Nov 2, 2023Choosing the Right Tool for Managing JavaScript Packages As a BeginnerIf you’re new to web development or simply looking to understand the world of JavaScript package management, you might have come across terms like npm, pnpm, and yarn. These are tools used to manage the various pieces of code that your web projects r...Discuss·33 readsJavaScript
Nwakaego-Egoego.hashnode.dev·Oct 11, 2023Good First IssueHello, class of good first issue 👋 I'm right there with you on this exciting open-source adventure. As a beginner myself, I've encountered a few challenges, and one that can seem like a giant hurdle is making those cloned repositories run smoothly...DiscussOpen Source
Jyothi Swaroop Makenaredjoe0608.hashnode.dev·Sep 28, 2023What On Earth Are 'package.json' And 'package-lock.json' Files?Hola Developers! I am sure you have come across the files 'package.json' and 'package-lock.json' before, right? Many of you might even be using them daily. I have been, too, for building my projects, but I have been guilty of not understanding what e...Discuss·1 likeNode.js