An open API service indexing awesome lists of open source software.

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.

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)