Skip to content

Instantly share code, notes, and snippets.

// Include the express module into the poject for creating the server
const express = require("express")
// Include the multer module into the project for accepting files
const multer = require("multer")
// We will set the object received from the express() function to a variable "app"
const app = express()
// Set a port on which the server will run on