Krishdirtykitchen.hashnode.net·Feb 7, 2023Packages, Lock files and Node Modules - A Deep DiveIntroduction In software development, managing dependencies is a crucial aspect in building and maintaining projects. This article aims to provide a comprehensive understanding of package.json, package-lock.json, and node_modules, which are essential...Discuss·3 likes·40 readsNode.js
Minh Hiệphiepnm9x.hashnode.net·Jun 27, 2022Windows copy files and exclude folders (node_modules)excludes.txt node_modules .metadata .idea .next Xcopy /I /S /E <SourceDir> <TargetDir> /EXCLUDE:excludes.txt # Example: Xcopy /I /S /E C:\Users\hiepn\Desktop D:\Backup\Desktop /EXCLUDE:excludes.txt CopyDiscussWindows
Lewis LiuforReflame blogreflame.hashnode.net·Dec 5, 2022Reflame now deploys your NPM package updates faster than a node_modules cache restoreMy first order of business with Reflame is to make waiting for deployments a relic of the past. Ever since the very first MVP, Reflame has been able to meet this bar for most typical deploys users make on a day-to-day basis, usually landing somewhere...Discuss·155 readsReact
Rohan Vermarohanvm.hashnode.net·Apr 2, 2023.dropboxignore, the .gitignore analogue that Dropbox should introduce as a feature.Introduction I come to you with an interesting open-source project I came across, albeit after a lot of misdirected efforts, that solved a problem in my workflow: dropboxignore. For context, I'm running Ubuntu 22.04LTS and using bash as my shell. The...Discussdropbox
Krishdirtykitchen.hashnode.net·Feb 7, 2023Packages, Lock files and Node Modules - A Deep DiveIntroduction In software development, managing dependencies is a crucial aspect in building and maintaining projects. This article aims to provide a comprehensive understanding of package.json, package-lock.json, and node_modules, which are essential...Discuss·3 likes·40 readsNode.js
Harsh Rajan Dwivediharshlancer.hashnode.net·Feb 3, 2023Why we don't need to upload Node Modules in GithubWhy do we need NPM Npm is an open source collection of Modules. We use npm for 3 things : 1.Reuse our own code in other projects. 2.Use others code in our project. 3.Share our solutions in other developers projects. Package Json Package json is a JSO...Discussnpm
Dhawal Pandyadhawalpandya01.hashnode.net·Jan 4, 2023Don't ignore the .gitignore.gitignore is like the "monitor" of your project. It's the file that tells Git which files and directories it should ignore when you're committing changes. But the question of what to add to the .gitignore file always makes you scratch your head. All...Discussgit-ignore
Lewis LiuforReflame blogreflame.hashnode.net·Dec 5, 2022Reflame now deploys your NPM package updates faster than a node_modules cache restoreMy first order of business with Reflame is to make waiting for deployments a relic of the past. Ever since the very first MVP, Reflame has been able to meet this bar for most typical deploys users make on a day-to-day basis, usually landing somewhere...Discuss·155 readsReact
Hamza Alihat52.hashnode.net·Sep 4, 2022How to create and publish npm package.Creating npm package Creating your npm package may sound difficult to do but it is surprisingly easy. In this blog post we are going to learn how we can create and publish npm package. Let’s create a folder named square-number you can name your folde...Discuss·27 readsnpm
Minh Hiệphiepnm9x.hashnode.net·Jun 27, 2022Windows copy files and exclude folders (node_modules)excludes.txt node_modules .metadata .idea .next Xcopy /I /S /E <SourceDir> <TargetDir> /EXCLUDE:excludes.txt # Example: Xcopy /I /S /E C:\Users\hiepn\Desktop D:\Backup\Desktop /EXCLUDE:excludes.txt CopyDiscussWindows