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

fakerito

v0.0.5

Published

CLI for boosting opinioned phabricator workflow

Downloads

9

Readme

Fakerito

CLI for boosting opinioned phabricator workflow.

Installation

You will need to install arcanist to starting using commands.

You may install this tool with this command:

npm install fakerito --save-dev

Usage

Installing the CLI globally provides access to the fakerito command.

fakerito [command]

# Run `help` for detailed information about CLI commands
fakerito [command] help

Config

You can set next options to customize your project. Config is passed using -c path/to/config.json.

projectName

Type: string

Display name for project that will be used in generating titles and names.

projectTag

Type: string

Project tag created by phabricator.

projectTeam

Type: string

Project team tag created by phabricator.

slackChannel

Type: string

Slack channel.

releases

Type: Array

Release data.

releases[].platform

Type: String Default: phabricator

Release platform. For now, it should be always set to phabricator.

releases[].previousVersion

Type: String Default:undefined

releases[].nextVersion

Type: String Default: undefined

releases[].releaseDate

Type: String Default: undefined

Release date in next format YYYY-MM-DD.

releases[].releaseTimeFrom

Type: String Default: undefined

Release time from in next format HH:mm.

releases[].releaseTimeTo

Type: String Default: undefined

Release time to in next format HH:mm.

releases[].owner

Type: String Default: undefined Usage:

gates.bill

releases[].projects

Type: Array Default: undefined

releases[].subscribers

Type: Array Default: undefined

releases[].additionalInfo

Type: Array Default: undefined

releases[].additionalInfo[].title

Type: String Default: null

Title of an additonal info.

releases[].additionalInfo[].entries

Type: Array Default: null

releases[].additionalInfo[].entries[].value

Type: String Default: null

releases[].additionalInfo[].entries[].visible

Type: Boolean Default: true

Example config

{
  "projectName": "Awsom app",
  "projectTag": "awsapp",
  "projectTeam": "team_aws",
  "slackChannel": "https://slack.com/messages/C5NAQH/cono/C9V22GG4D-153462077.0100",
  "phabricator": {
    "url": "https://phabricator.com",
    "task": {
      "customFields": {
        "slack": "custom.aha:slack-channel"   
      }
    }
  },
  "releases": [{
    "platform": "phabricator",
    "previousVersion": "1.45.0",
    "nextVersion": "1.46.0",
    "releaseDate": "2019-08-19",
    "releaseTimeFrom": "12:00",
    "releaseTimeTo": "12:30",
    "owner": "gates.bill",
    "projects": ["some_other_tag"],
    "subscribers": [
      "torvalds.linus",
      "qa.user"
    ],
    "additionalInfo": [
      {
        "title": "Notes",
        "entries": [
          {
            "value": "Downtime: NA"
          },
          {
            "value": "All changes will be on *BETA* channel on 2019-08-12 12:00 - 12:30"
          },
          {
            "value": "Team Sports and Team Ngs create release branch with changes (if any) until 16:00 day before *BETA* channel release."
          },
          {
            "value": "Tasks: [Link](https://phabricator.com/maniphest/query/mxJvw0TSPt1v/#R)"
          }
        ]
      },
      {
        "title": "Before Release",
        "entries": [
          {
            "value": "Merge Team X and Team Y branches (if any)"
          },
          {
            "value": "Check did we introduce any errors on beta channel with this release."
          }
        ]
      },
      {
        "title": "After Release",
        "entries": [
          {
            "value": "[] .placeholder"
          },
          {
            "value": "Send changelog."
          }
        ]
      }
    ]
  }]
}

Commands

releases

It handles project releases.

releases generate-release-notes

It will create task with summary of upcoming taskas and notes.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the MIT License - see the LICENSE.md file for details