https://github.com/ryanlarge13/react-portfolio-server
Server for the React-Portfolio repository.
https://github.com/ryanlarge13/react-portfolio-server
express mongoose nodejs-server
Last synced: about 1 year ago
JSON representation
Server for the React-Portfolio repository.
- Host: GitHub
- URL: https://github.com/ryanlarge13/react-portfolio-server
- Owner: RyanLarge13
- Created: 2022-11-07T08:23:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-15T03:57:08.000Z (over 2 years ago)
- Last Synced: 2025-04-04T09:41:39.878Z (over 1 year ago)
- Topics: express, mongoose, nodejs-server
- Language: JavaScript
- Homepage:
- Size: 218 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React-Portfolio-Server
Server for the React-Portfolio repository.
This is a simple RESTful API built for sending data to the
front end application that is allowed to access it.
The available requests that can be made include sending
blog data, project data, sending emails to my websites email address and allowing a user to download a PDF file
that is my Web Developer resume.
## Dependencies production/dev
```
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"mongoose": "^6.7.1",
"node-downloader-helper": "^2.1.4",
"nodemailer": "^6.8.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
```
The full application together is a MERN stack application
with a client side rendering structure. The code is public
for employers to view and study. The client side of
this application is a SPA & the backend is written with
Node.js making it extremely fast, modular, clean, readable, and
simple code.
## URLS For Client
[Client Website](https://ryanlarge.dev)
[ClientSide Code](https://github.com/RyanLarge13/React-Portfolio)