Welcome to the step-by-step guide on building DevLabs! In this tutorial, you'll learn how to set up and contribute to this open-source project. Whether you're new to React.js or experienced in web development, this guide will help you navigate through the process.
Prerequisites Before getting started, make sure you have the following installed:
Node.js npm (Node Package Manager) Getting Started
Welcome to DevLabs, a website where you can discover free tools contributed by the open-source community.
DevLabs is a platform for sharing knowledge and discovering useful tools for various aspects of life, including development, education, and productivity. This repository contains the source code for the DevLabs website, built using React.js.
- React.js: A JavaScript library for building user interfaces.
-
Clone the repo:
git clone https://github.com/username/Devlabs.git
-
Install Dependencies:
cd Devlabs npm install
-
Start Development Server:
npm start
-
Create a New Branch:
git checkout -b YourBranchName
-
Add New Tool:
- Navigate to
src > DB > product.json
. - Add your tool's information in the following format:
{ "productName": "<App_Name>", "category": "remote | resume | tweet | ai | ethical | movies | extensions | tools", "image": "<Image-Url>", "link": "<Link_to_the_website>", "description": "<Description_of_product>" }
- Navigate to
-
Stage and Commit Your Changes:
git add "<files_you_have_changed>" git commit -m "<your_commit_message>"
-
Push Your Changes:
git push origin YourBranchName
-
Create a Pull Request.
Thank you for your interest in contributing to DevLabs. Your contributions help make this platform more valuable to the community!