This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Import express into our project | |
| const express = require("express"); | |
| // Import multer | |
| const multer = require("multer"); | |
| // Creating an instance of express function | |
| const app = express(); | |
| // The port we want our project to run on |