Software Engineering Online Compiler in Node.JS In this article, we have developed an online compiler in Node.JS. We have demonstrate the ideas involved and the steps in developing this application in detail.
Software Engineering Web application to upload a Word document and convert it to PDF file In this article you will learn how to develop a web application in Node.JS where you can upload your word document and can download a PDF version of your document.
Software Engineering How to convert Word document to PDF in JavaScript? In this article, we have explored how to convert a Word document to PDF in JavaScript. Popular methods include using libraries like awesome-unoconv, libreoffice-convert and docx-pdf.
Software Engineering Downloading server files in Node.JS application In this article, you will learn how to download server files in Node.js application. We have used Express framework to demonstrate this and shown an extension where we redirect to a thank you page after download.
Software Engineering How to create and delete folders and files in JavaScript/ NodeJS In this tutorial, we will learn how to create or remove/ delete files and directories in Node.JS (JavaScript). We will use the filesystem module (fs) to achieve this.
Software Engineering Measure time in C++ In this article at OpenGenus, we explored different methods to measure time in C++ which includes time(), clock() and chrono library. This can be used to measure program execution time as well.