DEV Community

Ghazi Khan
Ghazi Khan

Posted on • Updated on

How can I add my project on Hacktoberfest to accept contributions

I want to add my project on Hactoberfest to accept some contributions from the Developers community. Till now have worked alone on this and I want it to grow, and that can be possible with some more minds included in it.

How can I list my project in Hactoberfest?

Project Repository: https://github.com/gkhan205/formify-react

GitHub logo gkhan205 / formify-react

React Form, which generates, validates, and populates data considering your API requirement. Just send an Array Model to the form and let it handle everything for you.

formify-react

Last form component you will need for you application which works with only a JSON you pass rest it will handle everything

NPM JavaScript Style Guide License Bundle Size

Installation
Usage
Props
Example Form Field
Form Fields
Supported Input Fields
Validators
Upcoming
Contributing

Edit formify-react

Install

#npm
npm i -S formify-react
#yarn
yarn add formify-react
Enter fullscreen mode Exit fullscreen mode

Usage

import React, { Component, createRef } from 'react'
import Form from 'formify-react'
import 'formify-react/dist/index.css'

import { formConstants } from './config'

const budgetData = [
  { value: 5000, label: '$5000' },
  { value: 15000, label: '$15000' },
  { value: 25000, label: '$25000' },
  { value: 35000, label: '$35000' },
  { value: 50000, label: '$50000' }
]

class Example extends Component {
  formRef = createRef()

  handleSave = () => {
    const { current } = this.formRef
…
Enter fullscreen mode Exit fullscreen mode

Latest comments (2)

Collapse
 
jmfayard profile image
Jean-Michel πŸ•΅πŸ»β€β™‚οΈ Fayard
  • You must add the tag hacktoberfest to your repo. That's the new opt-in mechanism for fighting PR spam
  • You can add your project to up-for-grabs.net/#/
  • You should curate issues to lead people to right things

FYI the way I handle that I create issues that don't need a lot of context, label them with "good first issue" using an issue template which starts by asking people to read the CONTRIBUTING guide

Worked really well so far, I'm happy to report that in a couple of days, I got 7 meaningfull pull requests and 0 spam.

Collapse
 
gkhan205 profile image
Ghazi Khan

Thank you. I'll do this right away. Thanks a lot. πŸ˜€β˜ΊοΈπŸ™