devFind

devFind

开源技能展示与开发者连接平台

devFind作为开源项目,为开发者提供技能展示和寻找合作的平台。用户可创建JSON格式的个人档案,平台通过搜索功能协助项目经理和招聘者寻找特定技能的开发者。支持按技能、位置或姓名搜索,devFind构建了一个便捷可搜索的开发者社区。

devFind开源项目开发者平台技能展示搜索功能Github
<div align="center"> <h1>👩‍💻 devFind - Discover and Connect with Skilled Developers!</h1> </div> <p align="center"> <a href="https://github.com/shyamtawli/devFind/blob/master/LICENSE" target="blank"> <img src="https://img.shields.io/github/license/shyamtawli/devFind?style=for-the-badge&logo=appveyor" alt="License" /> </a> <a href="https://github.com/shyamtawli/devFind/fork" target="blank"> <img src="https://img.shields.io/github/forks/shyamtawli/devFind?style=for-the-badge&logo=appveyor" alt="Forks"/> </a> <a href="https://github.com/shyamtawli/devFind/stargazers" target="blank"> <img src="https://img.shields.io/github/stars/shyamtawli/devFind?style=for-the-badge&logo=appveyor" alt="Star"/> </a> <a href="https://github.com/shyamtawli/devFind/issues" target="blank"> <img src="https://img.shields.io/github/issues/shyamtawli/devFind.svg?style=for-the-badge&logo=appveyor" alt="Click Vote Issue"/> </a> <a href="https://github.com/shyamtawli/devFind/pulls" target="blank"> <img src="https://img.shields.io/github/issues-pr/shyamtawli/devFind.svg?style=for-the-badge&logo=appveyor" alt="Click Vote Open Pull Request"/> </a> </p>

Table of Contents

<a id="about"></a>

About 🚀

  • devFind - Website
  • devFind is an open source project that aims to create a platform for developers to showcase their skills and connect with potential collaborators, all in a user-friendly and searchable format.
  • With devFind, developers can create their profiles in JSON format, which are then displayed on the web for others to discover.

<a id="features"></a>

Features 💪

  • One of the key features of devFind is its powerful search functionality.
  • Users can search for developers based on specific skills, locations or name, making it easy to find developers with expertise in a particular technology or programming language.
  • This makes devFind a valuable resource for project managers, recruiters, and anyone looking to connect with skilled developers for collaboration or employment opportunities.

<a id="how-to-add-your-profile-data"></a>

How to add your profile Data 🤔

Thank you for your interest in contributing to our open-source project! <br>

<a id="prerequisites"></a>

Prerequisites

  • A GitHub account
  • Git installed on your local development environment
  • Node Package Manager (npm) installed on your local development environment

How to Install Git

Git is a version control system that is used to manage the source code of your project.

To install Git, follow these steps:

  1. Download and install Git from the Official Website

  2. Open the terminal or command prompt on your local development environment

  3. Verify the installation of Git by running the following command:

    git --version

How to Install Node.js and npm

Node.js is a JavaScript runtime environment that allows you to run JavaScript code outside of a web browser. npm (Node Package Manager) is a package manager for JavaScript, essential for managing dependencies in Node.js projects. Here's how to install Node.js and npm:

  1. Download Node.js:

    • Visit the official Node.js website and download the appropriate installer for your operating system (Windows, macOS, or Linux).
    • Choose the LTS (Long Term Support) version for stable releases or the latest version for cutting-edge features.
    • Follow the installation instructions provided by the installer.
  2. Verify Node.js Installation:

    • After the installation is complete, open your terminal or command prompt.

    • To verify that Node.js has been installed successfully, type the following command and press Enter:

      node -v
      
    • This command should display the version of Node.js installed on your system. If it does, Node.js installation was successful.

  3. Verify npm Installation:

    • npm comes bundled with Node.js, so once Node.js is installed, npm is automatically installed as well.

    • To confirm that npm is installed, in your terminal or command prompt, type:

      npm -v
      
    • Press Enter. This command should display the version of npm installed on your system. If it does, npm installation was successful.

  4. Optional: Update npm (recommended):

    • It's recommended to keep npm up to date to access the latest features and bug fixes.

    • To update npm to the latest version, type the following command and press Enter:

      npm install -g npm@latest
      
    • This command will update npm to the latest stable version globally (-g flag).

By following these steps, you have successfully installed Node.js and npm on your system. You are now ready to start building JavaScript applications and managing dependencies with npm.

Steps to Add Your Profile Data

  1. Fork the repository: To create a copy of the repository in your GitHub account, click on the "Fork" button in the top right corner of the project repository page.

  2. Clone the forked repository: To clone the repository to your local development environment, open the terminal or command prompt and run the following command:

    git clone https://github.com/<your-github-username>/devFind.git
  3. Install dependencies: To install the necessary dependencies for the project, navigate to the project directory and run the following command:

    npm install
  4. Navigate to the public/data folder in your project directory.

  5. Create a new JSON file named your_github_username.json (replace your_github_username with your actual GitHub username). Open the file you just created.

  6. Add the following JSON object, replacing the placeholder values with your own details:

    { "name": "Your Name", "location": "Your Location", "bio": "Your Bio should be 20-30 words not more then that", "avatar": "https://github.com/<your-github-username>.png", "portfolio": "Your Portfolio URL or Github URL", "skills": ["Your Skill 1", "Your Skill 2", "..."], "social": { "GitHub": "https://github.com/<github-username>", "Twitter": "https://twitter.com/<twitter-username>", "LinkedIn": "https://www.linkedin.com/in/<linkedin-username>" } }
  7. Save the your_github_username.json file.

  8. Navigate to the src folder in your project directory. Open the ProfilesList.json file.

  9. Add your JSON filename (your_github_username.json) to the array of filenames in the ProfileList.json file, like this:

    ["filename1.json", "filename2.json", "your_github_username.json"]
  10. Save the ProfileLists.json file.

  11. Create a new branch: To create a new branch for your profile, run the following command:

    git checkout -b add-profile
  12. Add your changed files: Add changed files to the stage by running the following command:

    git add .
  13. Commit your changes: To save your changes to the branch,, run the following command:

    git commit -m "add: <your-name>"
  14. Push to the branch: To push the changes to the remote repository, run the following command:

    git push origin add-profile
  15. Create a pull request: To submit your changes to the main repository, create a pull request by clicking on the "Compare & pull request" button on your forked repository page.

  16. Wait for review and merge: Wait for the project maintainers to review and merge your changes.

Once your changes are merged, your profile data will be added to the project's Profile.json file and your profile will be displayed on the project's website.

<a id="contributing"></a>

Contributing 👨‍💻

Contributions make the open source community such an amazing place to learn, inspire, and create. <br> Any contributions you make are truly appreciated!

<a id="contributors"></a>

Contributors 🤝

<a href="https://github.com/shyamtawli/devFind/graphs/contributors"> <img src="https://contrib.rocks/image?repo=shyamtawli/devFind" /> </a>

<a id="license"></a>

License

<table> <tr> <td> <p align="center"> <img src="https://github.com/malivinayak/malivinayak/blob/main/LICENSE-Logo/MIT.png?raw=true" width="80%"></img> </td> <td> <img src="https://img.shields.io/badge/License-MIT-yellow.svg"/> <br> This project is licensed under <a href="./LICENSE">MIT</a>. <img width=2300/> </td> </tr> </table>

<a id="support"></a>

Support 🙏

Thank you for contributing to our open-source project! We appreciate your support 🚀 <br> Don't forget to leave a star ⭐

编辑推荐精选

TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
商汤小浣熊

商汤小浣熊

最强AI数据分析助手

小浣熊家族Raccoon,您的AI智能助手,致力于通过先进的人工智能技术,为用户提供高效、便捷的智能服务。无论是日常咨询还是专业问题解答,小浣熊都能以快速、准确的响应满足您的需求,让您的生活更加智能便捷。

imini AI

imini AI

像人一样思考的AI智能体

imini 是一款超级AI智能体,能根据人类指令,自主思考、自主完成、并且交付结果的AI智能体。

Keevx

Keevx

AI数字人视频创作平台

Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。

即梦AI

即梦AI

一站式AI创作平台

提供 AI 驱动的图片、视频生成及数字人等功能,助力创意创作

扣子-AI办公

扣子-AI办公

AI办公助手,复杂任务高效处理

AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!

蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI辅助写作AI工具蛙蛙写作AI写作工具学术助手办公助手营销助手AI助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
下拉加载更多