An open API service indexing awesome lists of open source software.

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.

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
```