A simple react app that utilize core concepts in reactjs to build a note application.
·
Report Bug
·
Request Feature
Table of Contents
This project is a simple note application that I plan to build out to mimic Google Keep. This project was simply created to help me on my journey in learning reactjs core concepts. When learning new frameworks, I try to focus more on the framework features rather than an interesting and exciting concept. A note app as basic as it is provides me with enough of every day web dev task i.e Create something, read/list something, edit something and delete something, that I could use to build and focus on react.
Below you can find instructions on how to launch the application using Docker or manually setup each service. To get a local copy up and running follow these simple example steps.
You will need to have docker installed on your machine. Please revert to the offical docker guide to help you setup Docker for your specfic OS. Once you have docker installed, you can follow the steps below.
Before getting started ensure you do not have any services running on the ports, 3000, 8081 and 27017 as these ports will need to be utilized the docker containers.
- Clone the repo
git clone https://github.com/apettiigrew/notes-app.git
- Navigate to the root folder
cd notes-app
- Run the following command
docker-compose up
- Once all services are up, navigate to http://localhost:3000 to start playing with the app.
Perhaps, you're not huge fan of Docker and would like to launch the apps manually, you can find instructions below. Before getting started You will need have node.js and mongodb installed on your machine.
Before getting started ensure you do not have any services running on the ports, 3000, 8081 and 27017 as these ports will need to be utilized by the different services.
- Clone the repo
git clone https://github.com/apettiigrew/notes-app.git
- Navigate to the root folder
cd notes-app
- The application utilize a very barebones mongodb installed, no authentication is required, just ensure mongodb is up and running on the default port.
- Naviate to the node-backend folder
cd node-backend
- Run the following commands
npm install npm run dev
-
Naviate to the react-frontend folder
cd react-frontend
-
Run the following commands
npm install npm run start:dev
- [] Add the pin notes
- [] Add labels on notes
- [] Add make a copy feature
- [] Add search notes feature
- [] Add multiselect notes feature
If you want to practice your react knowledge feel free to add any features you think might make this application become awesome. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Andrew Pettigrew - @apettiigrew - [email protected]
Project Link: https://github.com/apettiigrew/notes-app