A web application for uploading as many
Prerequisite- Install NodeJS on your PC/Laptop before working on this project on your local system.
Initial Setup:
-
Create a folder (Team_Career_Camp) and open it in VS Code. Inside it create the first file named index.js which will work as the entry point to our application.
-
Open a new terminal and run the npm command: npm init
-
Enter the details. Use the following for reference:
package name: (csv-uploader) version: (1.0.0) description: CSV file uploader and viewer. entry point: (index.js) test command: git repository: keywords: author: Sheshant Manure license: (ISC)
-
Now, create a new GitHub repository and name it as CSV-Uploader.
-
Run the following command in VS Code's terminal to create a README.md file: echo "# CSV-Uploader" >> README.md
Useful Git Commands:
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Sheshant-Manure/CSV-Uploader
git push -u origin main
Installing required npm packages:
npm install express
npm install ejs
npm install express-ejs-layouts
npm install mongoose