DEV Community

Discussion on: Hacktoberfest 2020 β€” Who's looking for contributors?

Collapse
 
prafulla-codes profile image
Prafulla Raichurkar

Hello DEVsπŸ‘©β€πŸ’»πŸ‘¨β€πŸ’», Feel free to contribute to some of my open-source projects this Hacktoberfestβ˜ƒοΈβœ¨

Express AutoDocs

Purely javascript-based GitHub action which scans and generates documentations from express APIs

GitHub logo Pika1998 / express-autodocs

A GitHub action which automatically generates documentation for your express APIs.



Contributions

πŸ’‘ Introduction

This action automatically scans for express APIs in your codebase and generates a documentation website


How to add to your workflow ❔

To add this action to your workflow simply modify your workflows main.yml file.

# This is a basic workflow to help you get started with Express AutoDocs Action
name: Express AutoDocs.
# This specifies when the action should occur
on
  push
    branches: [master]

jobs:
  generate_docs_job:
    runs-on: ubuntu-latest
    name: Generating Docs
    steps:
      # this step checks out the master branch of your repo using checkout action.
      - name: Checks out the repository
        id: checksout-repository
        uses: actions/checkout@v2
        with:
          repository: ""
      # this step generates the docs
      - name: Generating Docs.
        id: reading-file
        uses: Pika1998/express-autodocs@v0.0.1
      # Use the output from the `hello` step
      - name: Get the output time
        run
…

React Native Wifi & Hotspot Wizard

A react native library to integrate Wifi & Hotspot related functionalities in your apps easily.
Would love to have some iOS & Android based contributions here

GitHub logo Pika1998 / react-native-wifi-and-hotspot-wizard

Configure essential Wifi and Hotspot Settings Easily

Cover of React Native Wifi And Hotspot Wizard

Contributions Slack android ios npm Downloads

           

βš™οΈ Configure both Wifi and Hotspot settings using a single library.

This library also automatically deals with run-time permission management.

Getting Started

Install The Library Using NPM

npm install react-native-wifi-and-hotspot-wizard

Link The Library

react-native link react-native-wifi-and-hotspot-wizard

Usage

import {WifiWizard, HotspotWizard} from 'react-native-wifi-and-hotspot-wizard';
// example 
WifiWizard.turnOnWifi(); // turns on wifi
HotspotWizard.turnOffhotspot(); // turns off hotspot

Refer Official Documentation for detailed usage of all the methods :-

πŸ“± Test Library

To checkout this library before using it you can install WifiAndHotspotWizardDemo.apk

You can also find the code for Example Application over Here

⏱️ CHANGELOG

You can find all the changes made to this library in CHANGELOG.md

😎 CONTRIBUTE

Feel free to contribute to this library, any small addition to this is very much appreciated and welcomed :)

Checkout the CONTRIBUTION Guidelines to get started.

You can start…

Check out my GitHub Profile to view other projects you can contribute to

Collapse
 
rahil1304 profile image
Rahil Sarvaiya

Hey, I'm interested in contributing to express-autodocs repository. Any particular bugs or issues that I can target?

Collapse
 
prafulla-codes profile image
Prafulla Raichurkar

Hey, thanks for showing your interest πŸ˜„, I will create labels in the issues section, you can pick any one and start working on it, just let me know in the comments.

Thread Thread
 
rahil1304 profile image
Rahil Sarvaiya

Yeah sure, will check them out.