npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

opengov-meetings

v7.0.1

Published

Connect to 360 OpenGov Meetings

Downloads

37

Readme

js-standard-style

opengov-meetings

A Node.js module for connecting to the 360 OpenGov Meetings solution from TietoEVRY.

This API is based on screenscraping and far from rock solid.

It is however the best solution I've found so far to integrate 360 OpenGov Meetings with other systems.

This module supports the newest version of OpenGov. For previous versions stick to v4.1.1.

Installation

$ npm install opengov-meetings

API

Every call requires an opts object with host and path set.

host this is usually "http://opengov.cloudapp.net"

path the path to your installation of OpenGov Meetings. Like "/Meetings/"

Every call returns error or a data object

getBoards

List all boards.

const { getBoards } = require('opengov-meetings')
const options = {
  host: 'http://opengov.cloudapp.net',
  path: '/Meetings/tfk'
}

getBoards(options)
.then(console.log)
.catch(console.error)

getMeetings

List all meetings for a given board

boardId id for the board

const { getMeetings } = require('opengov-meetings')
const options = {
  host: 'http://opengov.cloudapp.net',
  path: '/Meetings/tfk',
  boardId: '200151',
  year: 2015
}

getMeetings(options)
.then(console.log)
.catch(console.error)

getAgenda

List agenda for a given meeting.

meetingId id for the meeting

const { getAgenda } = require('opengov-meetings')
const options = {
  host: 'http://opengov.cloudapp.net',
  path: '/Meetings/tfk',
  meetingId: '203235'
}

getAgenda(options)
.then(console.log)
.catch(console.error)

getDetails

Get details and documents for a given agendaItem

agendaId id for the item

const { getDetails } = require('opengov-meetings')
const options = {
  host: 'http://opengov.cloudapp.net',
  path: '/Meetings/tfk',
  agendaId: '200262'
}

getDetails(options)
.then(console.log)
.catch(console.error)

getMembers

Get members for a given board

boardId id for the board

const { getMembers } = require('opengov-meetings')
const options = {
  host: 'http://opengov.cloudapp.net',
  path: '/Meetings/tfk',
  agendaId: '217642'
}

getMembers(options)
.then(console.log)
.catch(console.error)

License

MIT