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

hubot-vso-scripts

v0.3.3

Published

Hubot Visual Studio Online Scripts

Downloads

57

Readme

Hubot scripts for Visual Studio Online

A collection of Hubot scripts to perform tasks in Visual Studio Online.

Introduction

Hubot scripts for Visual Studio Online provides many commands to perform tasks in Visual Studio Online.

The scripts can run in two modes

  • Trusted mode: the tasks against Visual Studio Online are performed using the same account
  • Impersonate mode: the tasks against Visual Studio Online are perfomed on behalf of the user issuing the command. In this mode the user has to explicitly authorize hubot

Installation

To install, in your Hubot instance directory

npm install hubot-vso-scripts

Include the package in your hubot's external-scripts.json

["hubot-vso-scripts"]

Upgrade from 0.2.5 or previous version

If you are using impersonate mode (OAuth), you will need to re-register your application on Visual Studio Online.

This is needed, because version 1.0 has introduced a more granular scope and we now request less permissions

You will need to register the application with the following permissions

  • Work items (read and write)
  • Build (read and execute)
  • Code (read)

Then you need to update you environment variables with your app id and your app secret (authorize URL stays the same)

The scripts will automatically detect the situation and ask the users to (re) authorize hubot scripts.

Configuration

The required environment variables are

  • HUBOT_VSONLINE_ACCOUNT - The Visual Studio Online account's name

Message replies are by default sent in plaintext, but if your adapter is capable of receiving messanges in other format you can configure the scripts to use a different formatting

  • HUBOT_VSONLINE_REPLY_FORMAT The formatting of replies. You can use plaintext,html or markdown

Trust Mode

In trust mode we need to set the alternate credentials of the user who will perform the tasks

  • HUBOT_VSONLINE_USERNAME: The alternate credentials username
  • HUBOT_VSONLINE_PASSWORD: The alternate credentials password

Impersonate Mode

In impersonate we need to set the variables defined in the application registered in Visual Studio Online (Click here to know how to register an application in Visual Studio Online

  • HUBOT_VSONLINE_APP_ID: The application ID
  • HUBOT_VSONLINE_APP_SECRET: The application secret
  • HUBOT_VSONLINE_AUTHORIZATION_CALLBACK_URL: The OAuth callback URL. This URL must be available from the chat service you're using

License

MIT