@koficypher/meetup
v1.0.1
Published
A NodeJS SDK for interacting with meetup.com's api
Downloads
3
Readme
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
- Get all upcoming meetups for a specified
GROUP_URLNAME
Installation
Run :
npm install @koficypher/meetup --save
Create a
.env
file and specify yourAPI_KEY
,GROUP_URLNAME
and specify the V2 api urlAPI_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