From 81c994cba7385df565e9a2bc3053b580ffc00d7e Mon Sep 17 00:00:00 2001 From: philwing100 Date: Wed, 12 Jun 2024 21:45:32 -0500 Subject: [PATCH] About me updated somewhat and started working on backend --- backend/myfirstnodefile.js | 6 ++++++ backend/package.json | 0 src/views/AboutMe.vue | 13 ------------- 3 files changed, 6 insertions(+), 13 deletions(-) create mode 100644 backend/myfirstnodefile.js create mode 100644 backend/package.json diff --git a/backend/myfirstnodefile.js b/backend/myfirstnodefile.js new file mode 100644 index 0000000..d5cb015 --- /dev/null +++ b/backend/myfirstnodefile.js @@ -0,0 +1,6 @@ +var http = require('http'); + +http.createServer(function (req, res) { + res.writeHead(200, {'Content-Type': 'text/html'}); + res.end('Hello World!'); +}).listen(8080); \ No newline at end of file diff --git a/backend/package.json b/backend/package.json new file mode 100644 index 0000000..e69de29 diff --git a/src/views/AboutMe.vue b/src/views/AboutMe.vue index 587f63e..b61c936 100644 --- a/src/views/AboutMe.vue +++ b/src/views/AboutMe.vue @@ -19,19 +19,6 @@
-

Projects

-
-

Project 1: E-commerce Website

-

A full-stack e-commerce website built with Vue.js and Node.js, featuring user authentication, product catalog, shopping cart functionality, and secure payment processing.

-
-
-

Project 2: Task Management App

-

A task management application developed with Vue.js and Firebase, allowing users to create, update, and prioritize tasks in real-time.

-
-
-

Project 3: Portfolio Website

-

My personal portfolio website showcasing my skills, projects, and contact information. Built using Vue.js, HTML, and CSS.

-