How to Install Reactive Resume on MXLinux Latest
Introduction
Reactive Resume is a free and open-source tool that allows you to create beautiful and interactive resumes with ease. It provides several templates that you can customize to create your own resume. In this tutorial, you will learn how to install Reactive Resume on MXLinux Latest.
Prerequisites
Before you start, make sure you have the following:
- A running installation of MXLinux Latest.
- A terminal application to execute the commands.
Steps
Open a terminal application by pressing
Ctrl+Alt+Ton your keyboard.Update the package details by executing the following command:
sudo apt-get updateInstall Node.js and npm by executing the following command:
sudo apt-get install nodejs npmThis will install Node.js and npm on your system.
Install Gatsby CLI by executing the following command:
sudo npm install -g gatsby-cliThis will install the Gatsby CLI globally on your system.
Clone the Reactive Resume repository from Github by executing the following command:
git clone https://github.com/AmruthPillai/ReactiveResume.gitNavigate to the ReactiveResume directory by executing the following command:
cd ReactiveResumeInstall the project dependencies by executing the following command:
npm installStart the development server by executing the following command:
gatsby developOpen your web browser and go to
http://localhost:8000. You will see the Reactive Resume app running.To create your own resume, open the
src/data/resume.jsonfile and customize it to your needs.Once you have customized the resume data, you can re-run the development server by executing the following command:
gatsby developAfter making all the necessary changes, you can build your resume for production by executing the following command:
gatsby buildThe resume files will be generated in the
publicdirectory. You can deploy this directory on any web server to make your resume available online.
Conclusion
You have successfully installed Reactive Resume on MXLinux Latest. You can now create beautiful and interactive resumes with this powerful tool.