© 2022 Hashnode
Introduction Bots on Twitter have been around for a while now. The facts are that you’ve probably interacted with or come across one without even knowing. We’ve seen Twitter bots that could help you d…
Almost one and half year ago, I wrote “Building GraphQL API with Nodejs, TypeGraphQL , Typegoose and Troubleshooting common challenges” which covers building a GraphQL API and facing most common chall…
NodeJS 18 introduced some new cool features and one of the most useful ones is the built in Fetch API. What this means is that we longer need to use 3rd party npm packages like node-fetch because the …
Docker has completely revolutionized the way we build, package, and ship software. Docker has made it possible for developers to package their applications and share them with others. It is because of…
Tiktok is very popular nowadays, in the USA, UK, and many more countries where you can make huge revenue by making a TikTok Video Downloader. So it's a good opportunity to make the tool like that. If you don't have time to make a tool yours…
Introduction People around the world use JavaScript and PHP to write computer programs. JavaScript was never a match for PHP in the past because JavaScript was only used for front-end development and …
Hi Techie's , In this blog, i will be discussing about what is monolith & micro services and why we use it. The Monolith The Monolith is a single tier software application in which that user interface…
Why Use Docker? Docker is an amazing tool for deploying small isolated blocks of code. In other words, "portable, self-sufficient containers." Here, I'll be packaging a simple Express server into a do…
This is a quick tutorial on starting a server with Express.js Before we jump into creating a server in Express.js. Here is some brief overview and some resources. Node.js Node.js is an asynchronous ev…
People frequently come to us with a request to create a text chat. Some of them want a messenger with a chat being the main or the only function. Others need to add chat into different projects, such …
What will be scraped Preparation First, we need to create a Node.js project and add npm packages cheerio to parse parts of the HTML markup, and axios to make a request to a website. To do this, in th…