All Projects → groupme-js → node-groupme

groupme-js / node-groupme

Licence: MIT license
The only GroupMe API library for NodeJS that isn't a million years old.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to node-groupme

GroupMe-Bots-With-Google-Apps-Script
A bunch of examples / resources for using the GroupMe Bot API with Google Apps Script
Stars: ✭ 35 (+40%)
Mutual labels:  groupme-api, groupme, groupme-bot
groupme-at-all
A Hubot chat bot to mention every user in a GroupMe channel all at once.
Stars: ✭ 94 (+276%)
Mutual labels:  groupme

node-groupme

✔️ This package is in active development! If you'd like to contribute, click here 🙂

About

Inspired by discord.js, node-groupme aims to replace the obsolete groupme package with a modern, object-oriented, intuitive approach to interacting with the GroupMe API.


npm npm Discord


This community-led effort is made possible by the unofficial GroupMe API Community Docs. Please contribute to the development of open-source applications by contributing to the community docs.

Join the node-groupme server on Discord to discuss the API or ask any questions.


Getting Started

npm i node-groupme
const GroupMe = require('node-groupme');
const client = new GroupMe.Client('YOUR_TOKEN_HERE');

client.login()
    .then(client => client.groups.fetch())
    .then(groups => groups.forEach(group => console.log(group.name)))
    .then(client.logout)
    .catch(console.error);

Getting Started (Contributing)

git clone [email protected]:groupme-js/node-groupme.git
npm i
npm run prepare

npm run prepare sets up husky pre-commit hooks, which will auto format and run eslint on your staged files locally.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].