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 🙏

© 2025 – Pkg Stats / Ryan Hefner

twui

v0.1.1

Published

Responsive web interface to Taskwarrior

Downloads

41

Readme

twui

Taskwarrior UI - a responsive web interface to taskwarrior written with Node.js.

Build Status badge npm package version badge license badge

Installing

npm install -g twui

Usage

To start simply type twui and navigate to localhost:2718.

If you want twui to run as a background process use the following:

twui &>/dev/null &

UI

Task Summary

task summary ui

The task summary contains six indicators for the following attributes of a task.

  • Description - the majority of text displayed ("explain the task warrior list status indicators")
  • Project - the text displayed in thin caps below the description ("TWUI")
  • Tags - text prefixed with a 'tag' image ("documentation")
  • Due Date - if the task has a due date 'hands' will appear in the circle to the left of the description (like a clock)
  • Recurring - if the task has a second ring it is a recurring task.
  • Annotations - if the task has annotations a count will occur to the right of the description ('[2]')
  • Priority - indicated by color
    • grey - no priority
    • blue - low priority
    • green - medium priority
    • red - high priority

Contributing

Setting up the development environment

  1. Install node http://nodejs.org/
  2. Clone the repo git clone https://github.com/rampantmonkey/twui.git
  3. Move to directory cd twui
  4. Download dependencies (angular.js) make deploy
  5. Download and install node module dependencies locally npm install
  6. Start server bin/twui

Updating to most recent version

  1. Download latest changes git pull origin master
  2. Start server bin/twui

Common Issues

No such file or directory

/usr/bin/env: node: No such file or directory

This error occurs when the node executable is not in your PATH. Some linux distributions decided to install the node executable as nodejs instead of node. The simple solution is to create a symlink ln -s /usr/bin/nodejs /usr/bin/node. But for those afraid of the file system a package is available to perform the same action - apt-get install nodejs-legacy.

License

This software - © Casey Robinson 2014 - is released under the MIT license. You can find a copy in LICENSE.txt or at opensource.org.