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

git-task

v0.1.9

Published

Set and resolve tasks and prevent committing before everything is done.

Downloads

16

Readme

git-task

Build Status

Set and resolve tasks and prevent committing before everything is done. This is a command line tool for not forgetting to do the annoying little things before committing. Instead of keeping track of tasks for the entire project this tool allows you to set small tasks for one commit and branch at a time. After committing, the old resolved tasks are automatically removed and you can start creating new great things.

Usage

Add a new task

$ git task add "Run tests before committing"
New task added: Run tests before committing

List tasks

$ git task -l
Tasks for branch: refs/heads/new
  status: 0 out of 1 tasks resolved.
        ID    TASK
        1     Run tests before committing (unresolved)

Resolve a task

$ git task resolve 1
Tasks for branch: refs/heads/new
  status: All tasks are resolved. Feel free to commit.
        ID    TASK
        1     Run tests before committing (resolved)

Git Hooks

Git-task automatically sets git hooks, so it won't let you commit before every task has been resolved.

$ git commit
You have 1 task remaining. Finish it before committing.

Remove tasks

If you've made a mistake while adding a new task, you can easily remove it.

$ git task remove 1
Task removed

You can also remove all tasks with clean

$ git task clean
All tasks removed.

Move a task

If you feel like a task should be in the next commit instead, you can move it there.

$ git task move 1
Task moved

You are now able to commit before resolving this task and it will automatically appear as an unresolved task after your next commit.

Install

npm install -g git-task

Using Docker

You can also Docker for developing git-task.

Make sure you have Docker installed on your system.

Build the Docker image:
docker build -t your-image-name .

Run the Docker image:
docker run -t -i your-image-name

License

The MIT License (MIT)