Skip to content
forked from knode/meetups

A place to put info about your local meetup. Anything node-flavored JS welcome!

License

Notifications You must be signed in to change notification settings

ohanajs/meetups

This branch is 35 commits behind knode/meetups:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ed2213c · Jan 21, 2014

History

66 Commits
Jan 20, 2014
Dec 29, 2013
Dec 6, 2013
Dec 6, 2013
Jan 16, 2014
Dec 27, 2013
Dec 3, 2013
Dec 5, 2013
Dec 6, 2013
Jan 21, 2014
Nov 20, 2013
Nov 18, 2013
Dec 18, 2013
Dec 18, 2013
Dec 30, 2013
Dec 28, 2013
Dec 28, 2013
Dec 28, 2013

Repository files navigation

Site in development at knode.io

meetups

A repository of Node meetups. A template is provided to add your own: simply copy the template/ directory to city-state-country/, and rename the file to your-meetup-name.md, and send a pull request.

audience

This repository is intended primarily for node meetup organizers or individuals looking to organize a local node meetup -- the intent is to share meeting formats, lists of talks, other resources. For a list of node events, see node-meatspace.

api

To use this repository as a package, it's best to add it as a git url to your package.json:

  "dependencies": {
    "knode-meetups": "git://github.com/knode/meetups.git#master"
  }

This ensures you'll be working with the latest set of meetup information. To use this information in your code:

var meetups = require('knode-meetups')
  , concat = require('concat-stream')

meetups().pipe(concat(function(data) {
  // data is an array of `meetup` POJSO's.
}))

meetups() -> Readable (flowing) Stream

Calling meetups() will return a readable stream of meetup objects.

meetup object

Meetup objects take the following form:

{ "name": "name of meetup"
, "location": "Lawrence, KS"
, "github": "github.com/url"
, "urls": ["url1", "url2"]
, "organizers": ["organizer1", "organizer2"]
, "formats": [{name: "Talk Night", info: [/* marked-lexed input */]}]
, "process": "process description" 
, "irc": "irc"
, "code-of-conduct": "Yes / No / N/A" }

license

All code is licensed MIT.

About

A place to put info about your local meetup. Anything node-flavored JS welcome!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published