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

termllo

v0.1.5

Published

Terminal Trello

Downloads

21

Readme

NPM downloads per month NPM version NPM license

Termllo

Trello on the Terminal

So far it implements basic Trello features (select board, add card with title and description, move cards around and edit cards), so it's just useful for solo boards (not that cool for colaborative boards (yet)).

Note: Only starred boards appear for now. So starring at least one board via Trello Web or the Trello App is necessary to see something in Termllo.

More advance features will be implemented on the future. If someone out there ever gets to really use this, any feedback would be really appreciated.

Alt text

Made with <3 by Mr. Goferito

Usage

Navigation is Vim-inspired:

* h, j, k, l  -> Move around
* H, J, K, L  -> Move selected card around
* Enter, o, e -> Open card dialog (for the selected card)
* n           -> New Card (on the active list)
* b           -> Boards dialog (just starred boards)
* Esc, q      -> Close dialog (boards or card)
* Ctrl+c      -> Terminate

Installation

First you need to get your key & token from trello: https://trello.com/app-key

Then there are two options:

NPM Install (recommended)

  1. npm i -g termllo
  2. termllo
  3. Introduce your key and token when prompted
  • This will generate a file in $HOME/.termllo/auth.js. You can also create that file yourself from the auth.js.example on the root of this repo*

Clone this repo

  1. git clone https://github.com/goferito/termllo.git
  2. cd termllo && npm i
  3. Copy/move the auth.js.example to auth.js, and edit it with your data
  4. node app.js

TODO

  • [ ] Check for trello server data from time to time to corroborate termllo state
  • [ ] Show number of unsync changes
  • [x] Prompt for trello token if missing, and save it in $HOME/.termllo/auth.js
  • [ ] Add screenshot to readme
  • [ ] Delay and pool move requests to minimize api calls
  • [ ] Notify new version available
  • [ ] Checklist support on the cards
  • [ ] Lables support
  • [ ] Type ? for help of shortcuts

On development

Nodemon and blessed don't play very well together. To avoid nodemon messing with input run it as nodemon -I app.js.

For debuging, the best option I found so far is to console.error in the code, pipe stderr to a file (nodemon -I app.js 2>> /tmp/termllo.log), and tail on a different terminal that file (tail -f /tmp/termllo.log)

License

MIT © Sadoht Gomez Fernandez