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

pitlab

v0.1.0

Published

GitLab integration with PivotalTracker

Downloads

4

Readme

PitLab

Allows integration of PivotalTracker story additions, updates, and comments into GitLab issues.

PitLab does not require or provide an external tool integration to import stories into PivotalTracker from GitLab. The issues created / updated by PitLab are identified using tags.

Setup

  1. Install PitLab
npm install -g pitlab
  1. Start PitLab
PITLAB_PORT=3000 pitlab path/to/config.json
  1. Configure Pivotal Tracker Project
    Go to the project you wish to integrate -> Settings -> Integrations -> Activity Web Hook
    Fill in the form as follows
  • Web Hook URL url to interact with PitLab, of the form http://<host>:3000/storyupdate/<repo_path
    • host is the publicly available location pitlab is deployed
    • repo_path is the gitlab path to the project to integrate with, including the group (e.g. <group>/<project>)
  • API Version v3

Configuration

PitLab expects a JSON configuration file when initiated from the command line. The configuration has the following properties:

  • gitlab_url: [Required] base URL of GitLab installation
  • gitlab_token: [Required] usable API token within GitLab (found within your user profile on GitLab)
    • Note that the provided token must have access to each GitLab projected intended to be integrated with PivotalTracker. It is recommended to create a "dummy" user with necessary privileges on each project to integrate and use its API token.
  • close_on_state: [Optional] Array of story states indicating an issue needs to be closed. States must be one of started, finished, delivered, rejected, accepted.
  • create_on_state: [Optional] Array of story states indicating an issue needs to be created. States must be one of started, finished, delivered, rejected, accepted.
  • create_on_type: [Optional] Array of story types indicating an issue needs to be created, after the story is created within PivotalTracker. Types must be one of feature, bug, chore, release.
  • post_comments: [Optional] Boolean indicating whether to post comments from a story to a linked issue.

Example configuration:

{
    "gitlab_url": "mygitlab.com",
    "gitlab_token": "abcd1234",
    "close_on_state": ["accepted"],
    "create_on_type": ["feature","bug"],
    "create_on_state": ["rejected"],
    "post_comments": true
}

License

(The MIT License)

Copyright (c) 2013 Ensequence

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.