Skip to main content

DigitalOcean App Platform

How To Install and Use Docker on Ubuntu 20.04
Tutorials DigitalOcean App Platform Docker Ubuntu 20.04
Introduction> Introduction # Docker is an application that simplifies the process of managing application processes in containers. Containers let you run your applications in resource-isolated processes. They’re similar to virtual machines, but containers are more portable, more resource-friendly, and more dependent on the host operating system.
How To Set Up a Node Project With Typescript
Tutorials DigitalOcean App Platform Node.js
Introduction> Introduction # Node is a run-time environment that makes it possible to write server-side JavaScript. It has gained widespread adoption since its release in 2011. Writing server-side JavaScript can be challenging as a codebase grows due to the nature of the JavaScript language: dynamic and weak typed.
How To Set Up a Node.js Application for Production on Ubuntu 16.04
Tutorials DigitalOcean App Platform Let's Encrypt Nginx Node.js Ubuntu 16.04
Introduction> Introduction # Node.js is an open-source JavaScript runtime environment for building server-side and networking applications. The platform runs on Linux, MacOS, FreeBSD, and Windows. Node.js applications can be run at the command line, but we’ll focus on running them as a service, so that they will automatically restart on reboot or failure, and can safely be used in a production environment.
How To Remove Docker Images, Containers, and Volumes
Tutorials DigitalOcean App Platform Docker
Introduction> Introduction # Docker makes it easy to wrap your applications and services in containers so you can run them anywhere. As you work with Docker, however, it’s also easy to accumulate an excessive number of unused images, containers, and data volumes that clutter the output and consume disk space.
How To Install Node.js on Ubuntu 18.04
Tutorials DigitalOcean App Platform Node.js Ubuntu 18.04
Introduction> Introduction # Node.js is a JavaScript platform for general-purpose programming that allows users to build network applications quickly. By leveraging JavaScript on both the front and backend, Node.js makes development more consistent and integrated.
How To Install Node.js on Ubuntu 20.04
Tutorials DigitalOcean App Platform JavaScript Ubuntu Ubuntu 20.04
Introduction> Introduction # Node.js is a JavaScript runtime for server-side programming. It allows developers to create scalable backend functionality using JavaScript, a language many are already familiar with from browser-based web development.
How To Use node-cron to Run Scheduled Jobs in Node.js
Tutorials Development DigitalOcean App Platform JavaScript Node.js
Introduction> Introduction # cron provides a way to repeat a task at a specific time interval. There may be repetitive tasks such as logging and performing backups that need to occur on a daily or weekly or monthly basis.