https://github.com/simonprickett/meetup-node-api
Demo using the Meetup API, Node JS and JQuery.
https://github.com/simonprickett/meetup-node-api
javascript jquery meetup-api node nodejs
Last synced: 29 days ago
JSON representation
Demo using the Meetup API, Node JS and JQuery.
- Host: GitHub
- URL: https://github.com/simonprickett/meetup-node-api
- Owner: simonprickett
- License: mit
- Created: 2017-09-02T17:58:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-29T16:14:08.000Z (over 8 years ago)
- Last Synced: 2025-02-09T09:29:40.801Z (over 1 year ago)
- Topics: javascript, jquery, meetup-api, node, nodejs
- Language: JavaScript
- Homepage: https://simonprickett.dev/
- Size: 68.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meetup-node-api
## Server
Requires a Meetup API key, set it using an environment variable, or hard code it into `server/server.js`. Example use of environment variable:
```
export MEETUP_API_KEY=key_goes_here
```
Do this before starting the server.
```
cd server
npm install
npm start
```
See output at:
```
http://localhost:8080/groups
```
```
http://localhost:8080/events/
```
example:
```
http://localhost:8080/events/pythonsd
```
## Client
```
cd client
python -m SimpleHTTPServer
```
Navigate to:
```
http://localhost:8000
```