Published 5 days ago
How To Use Rsync To Sync Files Between Servers While Excluding Specific FoldersThe option flag can be used to exclude specific files and folders when syncing up with are remote server. You can apply multiple statements to exclude several files and folders. To sync files from your local machine to a server and exclude a specific folder: ...
Published 2 weeks ago
Package: String Does Not Match The Pattern... |NPM|package.json|WarningThis is the warning you get from NPM whenever the name you set in your package.json doesn't follow the laid-out conventions . You can still go ahead...
Updated a month ago
Creating A Browser-based Interactive Terminal (Using XtermJS And NodeJS)A browser-based terminal has many practical use cases. Instead of sharing server access through SSH keys, you can provide access via a web-based terminal that is secured b...
Published a month ago
How To Get Git To Recognize File Case ChangesMy very first time of deploying software onto a server, I worked on on a Windows machine and deployed my code to a Linux server, and everything broke in unexpected ways. One of the first issues I ran into was related to file paths. What worked on Windows didn’t necessarily work Linux. I...
Published a month ago
How Can I Have Two Main Branches Pointing To Different Repos?In this article, I will guide you through setting up your codebase to push to the main branch of two different repositories. This isn’t something most people usually need to do, but here I am, working on a codebase where I have a base code repository. Other repos branch out from this base, each...
Published a month ago
How To Handle File Uploads In Node.js Using The Express-fileupload PackageIn this article, we will go step-by-step through handling file uploads in a Node.js application using the express-fileupload package. There are several ways to handle fi...