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

@orbital-frame/jehuty

v0.0.2-alpha.5

Published

Command line as a chatbot

Downloads

8

Readme

Orbital Frame Jehuty

Jehuty is a reference implementation and ready to use orbital frame running on Hubot. It comes with a number of preinstalled commands and can be easily extended. The documentation for Hubot administration is below.

Installed Plugins

Installed Commands

  • alias Create an alias for a command string
  • and Evaluate the AND of two conditions to a boolean
  • calc Evaluate a mathematical expression
  • car Treat input as a const cell and get the first contents
  • cdr Treat input as a const cell and get the rest of the contents after car
  • choose Choose one or more values from multiple choices
  • echo Write arguments to output
  • equal Check two or more arguments for equality
  • exec Execute a string as a command
  • false Return false
  • fg Foreground an interactive job
  • flatten Flatten array data to a string
  • get Retrieve data at a position from a list
  • greater-than Check whether one number is greater than another
  • head Return items from the front of input
  • help List all available commands and help dialog for an individual command
  • if Branch based on a condition
  • interactive An example of an interactive command
  • jobs List jobs and their statuses
  • join Join input by a character
  • kill Send a signal to a job
  • length Get argument length
  • less-than Check whether one number is less than another
  • list Convert arguments to a list
  • no-format Get the raw output of a command without running it through its formatter
  • noop No operation
  • not Get the logical inversion of a value
  • observer An example of a command which uses observable interactions
  • or Evaluate the OR of two conditions to a boolean
  • promote Promote a user to a superuser
  • quote Surround a string with backticks
  • range Generate an inclusive range
  • repeat Repeat output
  • sleep Wait for a specified amount of time
  • split Split input by a character
  • tail Return items from the end of input
  • true Return true
  • uptime Gives the amount of time the bot has been running
  • version Get the bot's version
  • whoami Get the current user
  • xargs Distribute list items to a command

Running Jehuty Locally

You can test your hubot by running the following, however some plugins will not behave as expected unless the environment variables they rely upon have been set.

You can start Jehuty locally by running:

% bin/hubot

You'll see some start up output and a prompt:

[Sat Feb 28 2015 12:38:27 GMT+0000 (GMT)] INFO Using default redis on localhost:6379
jehuty>

Then you can interact with Jehuty by typing @jehuty <command>.

jehuty> @jehuty echo "hello"
...

Configuration

The file src/index.js configures the orbital-frame instance with the bot name, commands to make available, plugins to run, and sets the adapter to Hubot. Additional commands and plugins can be added by adding them to src/commands/index.js and src/plugins/index.js, respectively.

Persistence

If you are going to use the hubot-redis-brain package (strongly suggested), you will need to add the Redis to Go addon on Heroku which requires a verified account or you can create an account at Redis to Go and manually set the REDISTOGO_URL variable.

% heroku config:add REDISTOGO_URL="..."

If you don't need any persistence feel free to remove the hubot-redis-brain from external-scripts.json and you don't need to worry about redis at all.

Adapters

Adapters are the interface to the service you want your hubot to run on, such as Campfire or IRC. There are a number of third party adapters that the community have contributed. Check Hubot Adapters for the available ones.

If you would like to run a non-Campfire or shell adapter you will need to add the adapter package as a dependency to the package.json file in the dependencies section.

Once you've added the dependency with npm install --save to install it you can then run hubot with the adapter.

% bin/hubot -a <adapter>

Where <adapter> is the name of your adapter without the hubot- prefix.

Deployment

% heroku create --stack cedar
% git push heroku master

If your Heroku account has been verified you can run the following to enable and add the Redis to Go addon to your app.

% heroku addons:add redistogo:nano

If you run into any problems, checkout Heroku's docs.

You'll need to edit the Procfile to set the name of your hubot.

More detailed documentation can be found on the deploying hubot onto Heroku wiki page.

Deploying to UNIX or Windows

If you would like to deploy to either a UNIX operating system or Windows. Please check out the deploying hubot onto UNIX and deploying hubot onto Windows wiki pages.

Campfire Variables

If you are using the Campfire adapter you will need to set some environment variables. If not, refer to your adapter documentation for how to configure it, links to the adapters can be found on Hubot Adapters.

Create a separate Campfire user for your bot and get their token from the web UI.

% heroku config:add HUBOT_CAMPFIRE_TOKEN="..."

Get the numeric IDs of the rooms you want the bot to join, comma delimited. If you want the bot to connect to https://mysubdomain.campfirenow.com/room/42 and https://mysubdomain.campfirenow.com/room/1024 then you'd add it like this:

% heroku config:add HUBOT_CAMPFIRE_ROOMS="42,1024"

Add the subdomain hubot should connect to. If you web URL looks like http://mysubdomain.campfirenow.com then you'd add it like this:

% heroku config:add HUBOT_CAMPFIRE_ACCOUNT="mysubdomain"

Restart the bot

You may want to get comfortable with heroku logs and heroku restart if you're having issues.