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

jenni

v1.5.1

Published

CLI tool to interact with Jenkins server

Downloads

34

Readme

jenni

Jenkins personal assistant - CLI tool to interact with Jenkins server

npm Build

jenni in action

Note - jenni will only work inside the git repository

Features

  • Print Jenkins build history of a Job.
  • Show estimated remaining time for running builds.
  • Open Jenkins build in the browser.
  • Trigger new builds. (without parameters)
  • Watch the console output or stage view after triggering a build.
  • View specific build console output.

Upcoming Features

  • Trigger new builds with parameters
  • Abort running builds

Prerequisites

Installation

> npm i -g jenni

Above installation will give you globally available jen command to intract with Jenkins server.

Migration from v0.2.6 to v1

The v1 has breaking changes. If you're using an old version of Jenni, follow the steps below before upgrading to v1.

step 1: Find the config dir path
> jen c
output: Config path - /home/suresh/.config/jenni-nodejs/config.json

step 2: Manually delete the config directory
> rm -rf /home/suresh/.config/jenni-nodejs

step 3:
> npm update -g jenni@latest

Setup

Each git project will requires separate initialization.

jen init will walk you through to initialize jenni to your project.

jen init

Usage

> jen --help

Usage: jen [options] [command]

Jenkins personal assistant

Options:
  -v, --version         output the version number
  -d, --debug           Enable debug mode
  -h, --help            output usage information

Commands:
  init|i                Initialize jen
  status|s              Print branch build status
  open|o                Open jenkins build in browser
  build|b [options]     Trigger a new build
  console|co [options]  Show console output
  config|c [options]    Show or Update repository configuration

| Command                  | Options | Description | | --- | --- | --- | | jen init | i | - | Initialize jenni to your project. | | jen status | s | - | Print branch build history. | | jen open | o | Optional build number e.g. jen open <build number> | Open jenkins build in the browser. | | jen build | b | --watch | -w Watch the console output after triggering a build. --stage | -s Watch the stage view after triggering a build. | Trigger a new build and optionally watch its console output or stage view. Note it's not possible to view console output, stage view together. | | jen console | co | --build | -b View specific build console output. e.g. jen console --build <build id> | By default, this command will print the last build console output. If the job has more than one running builds, then it will prompt the user to select a build to retrieve its console output. Use --build option to view the specific build console output. Refer to this flow chart that explains console command behavior. | | jen config | c | --username | -n --token | -t --url | -u --job-name --job-path --job-type e.g. Reconfigure username & token jen config --username <foo> --token <bar> | Overwrite project jenni config. Without any options it will print current config. |

Debug

It's basic for the moment, pass -d or --debug to log debug messages. Can also be enabled by setting the environment variable DEBUG_JEN to true. E.g.

> jen status -d

// OR

> DEBUG_JEN=true jen status

Known Limitations

  • At the moment Jenni handles only WorkflowJob and WorkflowMultiBranchProject job types. So, if you get the error message Unsupported job type: <job type> please file an issue.

  • When initializing Jenni (jen init) currently there is no way to interactively select jobs inside the folders (Issue). As a workaround, Jenni will print jobs up to 3 levels deep. For example

    ├── folder-1
    │   ├── folder-1.1
    │   │   └── job3
    │   └── job2
    └── job1
    
    for the above structure, the output will be:
    
    job1
    folder-1 → job2
    folder-1 → folder-1.1 - job3

    So if your job is deeply nested, you should manually configure the job. Follow this guide.

Feedback

I'm no expert Jenkins user 🤫. I'm building this tool while learning Jenkins concepts. I'm really interested in hearing your use cases, insights, and suggestions for improvements.

Similar Projects

There're a few similar project you can found below:

license

MIT © Sureshraj