Does a Developer need Computer Science?
We just watched a couple of YouTube videos or attended a bootcamp/online course and we learnt practical skills we can use to build websites and web applications. But the honest truth is...
career April 4, 2022How To Create A Static File Server Without Any NPM Package
static files are files that can be stored and sent to a client on request. Examples of such files are html, css, js, png, ico, mp3, pdf, mp4 etc.
nodejsnetworking March 7, 2022HTTP image server without any npm package
Ok, we'd start by creating an http server. NodeJS has a build-in http module with methods for handling all things HTTP related, like in our case we would need the createServer method.
nodejsnetworking March 7, 2022Downloading a file from a remote server using NodeJs without any npm package
First, we need to specify the file URL we want to download, we would store that in a variable called remoteURL. We also need to specify the path where the downloaded file will be saved, we would call that outputFilePath
nodejsnetworking March 7, 2022(On page 1 of 1.)