Rocket Link is a web application that allows users to create personalized pages to share all their links in one place, similar to linktr.ee. Users can register, log in, create, update, and delete links, and manage their profile through the user-friendly interface.
- User Registration and Login
- Profile Management
- Link Management (Create, Read, Update, Delete)
- User Dashboard
- Admin Panel
- Clone the repository:
git clone https://github.com/tayyipcanbay/rocket-link-react.git
- Navigate to the project directory:
cd rocket-link-react - Install the dependencies:
npm install
- Start the development server:
npm start
login.js: Handles user login and registration.user.js: Displays the user's profile page with their links.admin.js: Admin panel for managing user links.
Backend developed by Mustafa Kemal Gördesli. You can find the relevant repository here
https://rocket-link-backend.vercel.app/api
-
Register:
/users/register[POST]{ "firstName": "string", "lastName": "string", "email": "string", "password": "string", "username": "string" } -
Login:
/users/login[POST]{ "username": "string", "password": "string" } -
Update Profile Picture:
/users/profilepic[POST]- Header:
Authorization: Bearer {{token}} - FormData:
profilepic: image
- Header:
-
Get User Info:
/users/[GET]- Header:
Authorization: Bearer {{token}}
- Header:
-
Create Link:
/links/[POST]- Header:
Authorization: Bearer {{token}} - Body:
{ "title": "string", "link": "string" } - Header:
-
Get All User Links (Admin):
/links/[GET]- Header:
Authorization: Bearer {{token}}
- Header:
-
Get Active Links by Username:
/links/:username[GET] -
Update Link:
/links/:id[PUT]- Header:
Authorization: Bearer {{token}} - Body:
{ "title": "string", "link": "string" } - Header:
-
Delete Link:
/links/:id[DELETE]- Header:
Authorization: Bearer {{token}}
- Header:
Feel free to fork this project, create a feature branch, and submit a pull request. For major changes, please open an issue first to discuss what you would like to change.
This project is licensed under the MIT License - see the LICENSE file for details.