1.0.1 • Published 5 years ago

@koficypher/meetup v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Known Vulnerabilities

Meetup NodeJS SDK

A NodeJS SDK for Meetup's API Version 2

Authentication as at this version only supports API key authentication. Future releases may support OAuth2 authentication.

Not complete yet, more features to come..

Features

  1. Get all upcoming meetups for a specified GROUP_URLNAME

Installation

  • Run : npm install @koficypher/meetup --save

  • Create a .env file and specify your API_KEY , GROUP_URLNAME and specify the V2 api url API_URL =https://api.meetup.com/2

  • Require it in your file like so:

    const meetup = require('@koficypher/meetup')
    
    //initialize meetup class
    
    const meetups = new meetup()
    
    /** result returns a promise so console log it to see it */
    meetups.getUpcoming().then(data => {
       console.log(data);
    });

Want to Collaborate ?

Kindly send me an email koficypher

Licence

The project is licenced under the MIT licence

Security Issues

Please email all security issues to koficypher