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

hackaserve

v2.0.1

Published

HackaServe is a simple text message delivery system for hackathons and other events which uses your twilio account to despatch messages to all your attendees, or sub groups of them.

Downloads

1

Readme

HackaServe

A tool for people foolish enough to run hackathons.

HackaServe is a simple text message delivery system for hackathons and other events which uses your twilio account to despatch messages to all your attendees, or sub groups of them.

To begin using HackaServe, run

    $ npm i hackaserve -g

I hate installing stuff globally, personally, but hey, it's a CLI so I'll make an exception

Run the following commands and it'll show you how to use the tool

    $ hackaserve -h

Get going with a simple hackathon or event

Once hackaserve is installed, you can start using it, get a new hackathon going with the following command

    $ hackaserve init HackLondon -x

This will create a new Hackathon folder with the name HackLondon in the directory you call the command from.

inside you'll find two YAML files, the first is called hackathons.yml

    name: HackLondon
    description: ''
    twilio_account_id: null
    twilio_api_key: null
    twilio_phone_number: null
    messages:
    - name: first_message
      text: 'HackLondon: Lunch is now served in room K1.42'
      group: all
      type: once

this will contain info about your hackathon and the messages you plan to send during the hackathon, don't worry we can add more either manually or via the CLI

The second one is generated by the -x command and is an example of what an attendee record would look like

    - name: Adam Green
      telephone: YEEE...NO
      email: YEEE...NO
      groups:
          - attendee
          - gluten-intolerant

We can also add to this yaml using commands provided by hackaserve CLI

To populate your attendees look at the add-attendees and add-attendees-from-csv command

Finally, to send one of our messages we run

    $ hackaserve send --groups gluten-intolerant --limit 5

The command above sends out text messages to 5 of the people belonging to the gluten intolerant group. If run again, it'll send out another 5 messages to a different set of 5 people from that group.

This means you can send groups in waves by setting a limit on the number of messages sent on a command. The command will give you a sarcastic warning about no longer being able to send messages once it has sent a message to all of the group

Future Objectives

  • Add Support for email messages
  • Add data updating for attendees (i.e. identify teams they belong to so we can give send messages calling teams up)
  • generate codes to allow organisers to identify valid and fake text messages (if you're that pedantic)