Chidera Kingsleygeniuskingsley.hashnode.dev·Sep 7, 2023Trying to run your app on localhost:3000 but for some reason, the port is blocked?Just run npx kill-port 3000 if the port is 3000 same goes for other ports. Reference https://www.npmjs.com/package/kill-portDiscusslocalhost
Hemantblog.hemant.social·Aug 30, 2023Connect Your Localhost to the Internet via Cloudflare TunnelIf you're using an old computer at home to run a server for things like media, files, or websites, you might want to make it accessible on the internet. You can do this by the port forwarding option in your router's settings, However, it's not safe o...Discuss·39 likes·37 readscloudflare
Himanshuhimanshu2212.hashnode.dev·Aug 12, 2023Fixing errors during installation of MySql Workbench in Linux.Errors - mysql can't connect to localhost. Go to /etc/my.cnf Add the following lines to your file if these are not written already- #skip-networking bind-address = 127.0.0.1 port=3306 datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock ...DiscussMySQL
Nishant Jainnishantjain.hashnode.dev·Jun 14, 2023Setting Up Appwrite with Docker Locally.To set up Appwrite with Docker locally, you will need to have Docker installed on your machine. If you do not have Docker installed, you can follow the instructions for your specific operating system from the Docker website: https://docs.docker.com/g...Discuss·29 readsAppwrite
Sathish kumar Psathishbeloved.hashnode.dev·Jun 10, 2023How to view localhost websites on other devices while developingWhen you're developing a website, it's helpful to be able to view it on different devices to make sure it looks and works properly. However, if you're developing on your local machine, it can be difficult to access your website from other devices. He...Discuss·11 likes·39 readsWeb Development
Devang Tomardevangtomar.hashnode.dev·Jun 10, 2023Securing Data Privacy: Local ChatGPT for Sensitive Information 🔐🤖ChatGPT, an extraordinarily Large Language Model (LLM), has taken the world by storm. With its user-friendly chat-style interface, individuals across the globe can now effortlessly inquire about a wide range of topics, spanning from coding guidance t...Discusschatgpt
Ben Hammondblog.benhammond.tech·Apr 7, 2023Expose Vite's local addressAdd -- --host to the end of your package manager's start command. Note the extra hyphens! As a follow-up to my blog on viewing localhost on mobile, I thought I would share how to do the same with Vite specifically. A recent task I completed at work ...Discuss·466 readsViewing localhost on mobilevite
Alisha Saiyedalishasblog.hashnode.dev·Mar 12, 2023Connecting SMTP to XamppWhile I was working with a contact form in HTML, CSS, and JavaScript, I was not able to send or receive emails from the form. I always used to get the above error. To resolve this, I have done a lot of research on YouTube and Google but have failed ...Discuss·3 likes·102 readssmtp
Vipul Guptavipulgupta31.hashnode.dev·Feb 21, 2023How To Perform Local Website Testing Using Selenium And JavaUsers expect new features and websites to be seamless and user-friendly when they go live. End-to-end website testing in local infrastructure becomes an unspoken critical requirement for this. However, if this test is performed later or after the ent...Discuss·37 readsselenium-webdriver
LuKmanlukman.hashnode.dev·Feb 19, 2023How to create a custom server in next.js using vhost and expressNext.js is a popular framework for building server-rendered React applications. It provides an easy-to-use development environment and powerful tools for building complex applications. One of the great features of Next.js is the ability to create cus...Discuss·525 readsVirtual Host