Skip to content

Kirolen/CV-Creator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CV creator on React and with the help of node.js

This project was bootstrapped with Create React App.

Technology stack:

  • React
  • JavaScript
  • node.js
  • HTML5
  • CSS3

Description

This project was written to introduce React and node.js Also, this project was used to pass laboratory works 1 and 2 in the second year of the second semester of studies at Taras Shevchenko Kyiv National University for the discipline of OOP

This project is a simple website on which the user can create his own resume and download it in PDF format. In addition to being able to edit the resume in the future, the user can register and save his resume on the server.

Glossary

  1. CV (Curriculum Vitae) Description: A document containing personal, educational, and professional information used for job applications. Users can create, edit, and save their CVs.
  2. React Description: A JavaScript library for building user interfaces. It is used in this project for the front-end development.
  3. Node.js Description: A JavaScript runtime for server-side development. This project uses Node.js for handling server requests and database interactions.
  4. MongoDB Description: A NoSQL database that stores data in a document format. It's used in this project to store user data and CVs.
  5. Frontend Description: The part of the app that the user interacts with, built using React.
  6. Backend Description: The server-side of the app that handles API requests, data processing, and database interactions, powered by Node.js.
  7. JWT (JSON Web Token) Description: A standard for securely transmitting information between the server and client. Used in this project for user authentication.
  8. REST API Description: A set of API endpoints for interacting with the server. The client communicates with the server via REST API to manage data.
  9. PDF Generation Description: The process of converting the user's CV into a downloadable PDF. This is done using libraries like html2canvas and jsPDF.
  10. User Authentication Description: Verifying the identity of users through login credentials. JWT is used for user authentication in this project.
  11. Save CV Description: Allows users to save their CV, either as the current version or as a new one.
  12. CV Editing Description: Functionality that allows users to edit various sections of their CV, such as personal details, skills, and work experience.
  13. MongoDB Connection Description: The link between the server and MongoDB to store and retrieve user data and CVs.
  14. Client-side Routing Description: Navigation within the app without page reloads, typically handled by React Router.
  15. Server-side Rendering (SSR) Description: The process of rendering content on the server before sending it to the client. This project mainly uses client-side rendering.
  16. User Profile Description: The section where users can manage their CVs, including creating, editing, and deleting them.

Installation

  1. Prerequisites Before starting, ensure the following software is installed on your system:
  • Node.js (latest stable version recommended)
  • MongoDB (running locally or a remote connection URL)
  1. Install Dependencies To install the required dependencies for both the client and server, execute the following commands in their respective directories:
  • Server:

    cd server

    npm install

  • Client:

    cd client

    npm install

  1. Database Setup In the server.js file located in the server directory, update the MongoDB connection string with your database credentials. For example:

const MONGO_URI = "your-mongo-db-connection-string";

  1. Starting the Application
  • Client (Frontend): Run the following command in the client directory to start the frontend on the local server (default: http://localhost:3000):

npm start index.jsx

  • Server (Backend): Run the following command in the server directory to start the backend server (default: http://localhost:5000):

node server.js

  1. Accessing the Application Once the client and server are running, you can open your browser and navigate to:

Documentation

Documentation for both the client and server is included in the same folder as the README.md file. It provides detailed descriptions of the API endpoints, application structure, and setup process. Also, information about laboratory work is located in './docs/labs/'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors