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

trckr

v0.1.1

Published

github issues tracker, streak style

Downloads

10

Readme

Issue-Tracker

This is a command-line tool to keep track of all the issues in a github project (made with github.com/joyent/node in mind)

you can try it today :) (disclaimer: not 100% done)

Get the repo

$ git clone [email protected]:diasdavid/issue-tracker.git

Link it

cd issue-tracker
npm link

Set it up

$ trckr set repo <username>/<repo> # e.g diasdavid/issue-tracker
$ trckr set secret <useragent> <accesstoken> # e.g diasdavid SASDASDASDSDA.. , chck out to get yours at https://github.com/blog/1509-personal-api-tokens

You are ready to go :)

features aka commands (MVP 0.1)

trckr fullupdate
trckr new                               # tell me what issues are 'new'
trckr review                            # tell me the issues that I don't 
trckr pipeline <issueNumber> <state>    # alias to pipeline should be pl
trckr pipeline <issueNumber> next       # alias to pipeline should be plreview for more than the 'threshold' number of days
trckr set pipeline new,a,b,c,d,e,close
trckt set repo <user>/<reponame>
trckr set secret <useragent> <accesstoken>

Dev mode

This way, you won't mess with your records

export NODE_ENV=dev

Issue object model example

 { type: 'Issue',
  _saved: true,
  isValid: [Function],
  save: [Function],
  updateProperties: [Function],
  updateAttributes: [Function],
  toJSON: [Function],
  toData: [Function],
  toObj: [Function],
  toString: [Function],
  _getAssociation: [Function],
  _createAssociation: [Function],
  _removeAssociation: [Function],
  _commitAssociationChanges: [Function],
  clone: [Function],
  _events: {},
  createdAt: Sun Jan 19 2014 16:38:33 GMT+0000 (WET),
  updatedAt: undefined,
  url: 'https://api.github.com/repos/diasdavid/issue-tracker/issues/2',
  htmlUrl: 'https://github.com/diasdavid/issue-tracker/issues/2',
  number: 2,
  state: 'open',
  title: 'switch issue model to camelCase',
  body: '`model` enforces camelCase, everything that is not camelCase is not well saved, I have to monkey patch the name of the fields that come down from the fetch issue',
  user:
   { login: 'diasdavid',
     id: 1211152,
     avatar_url: 'https://gravatar.com/avatar/0b2bf11db649b4901d41510c3b48ea55?d=https%3A%2F%2Fidenticons.github.com%2F09cb9c649a616a349a327f97736c0b6d.png&r=x',
     gravatar_id: '0b2bf11db649b4901d41510c3b48ea55',
     url: 'https://api.github.com/users/diasdavid',
     html_url: 'https://github.com/diasdavid',
     followers_url: 'https://api.github.com/users/diasdavid/followers',
     following_url: 'https://api.github.com/users/diasdavid/following{/other_user}',
     gists_url: 'https://api.github.com/users/diasdavid/gists{/gist_id}',
     starred_url: 'https://api.github.com/users/diasdavid/starred{/owner}{/repo}',
     subscriptions_url: 'https://api.github.com/users/diasdavid/subscriptions',
     organizations_url: 'https://api.github.com/users/diasdavid/orgs',
     repos_url: 'https://api.github.com/users/diasdavid/repos',
     events_url: 'https://api.github.com/users/diasdavid/events{/privacy}',
     received_events_url: 'https://api.github.com/users/diasdavid/received_events',
     type: 'User',
     site_admin: false },
  labels:
   [ { url: 'https://api.github.com/repos/diasdavid/issue-tracker/labels/bug',
       name: 'bug',
       color: 'fc2929' } ],
  assignee: null,
  milestone: null,
  comments: 0,
  pullRequest: { html_url: null, diff_url: null, patch_url: null },
  closedAt: null,
  trckrState: 'new',
  trckrLastReview: null,
  trckrPingback: null,
  id: '466565B5-8D91-4B9E-A2F9-4194F6AC62AF' }