Sidharthan Chandrasekaran Kamarajthebugshots.dev·Jul 22, 2023Create a simple fileserver in GolangIn modern software development, there are often scenarios where you need to share files or directories over the internet quickly and securely. Whether it's for collaborating with team members, sharing assets, or providing a simple file-sharing soluti...718 readsGolanggolang
Arka Rahasoftdevarka.hashnode.dev·Jul 10, 2023creating an HTTP server using Express.js in Node.jsStart by creating a new directory for your project and navigate to it in your terminal. Initialize a new Node.js project by running the following command: npm init -y Install Express.js as a dependency by running the following command: npm inst...node js http server