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 🙏

© 2026 – Pkg Stats / Ryan Hefner

devopsstartkit

v1.0.1

Published

A repository which contains the different files and documentation which is need to set up a CI/CD environment

Readme

DevOpsStartkit

A repository which contains the different files and documentation which is need to set up a CI/CD environment

Known and common issues

  • SSH Token via URA is blocked -> Use PAT Authentication
  • You can't install/update Jenkins Plugins when connected to URA
  • If your VMs are crashing on a regular basis. Try to move your VM files from OneDrive to a local folder. If the file is read in the same moment, OneDrive tries to sync them to the VM crashes
  • Windows is an issue in itself. Just use Linux. That way, you make life easier for yourself and everyone else

Installation

Jenkins

Short guide on how to get Jenkins running on Linux and Windows

Forward traffic

If you have problems connecting Docker Jenkins through to the Docker Host, try this

Pros and Cons of installations

Getting started with Jenkins

Basic pipelines

This is a pipeline example to test if the pipelines are working properly (GitHub must already be connected with Jenkins see "Create credentials for GitHub")

  1. Jenkins Dashboard -> New Item -> Give a name -> Select "Pipeline" -> Click "OK"

  2. Give a description

  3. Build Triggers -> Poll SCM -> Give a schedule

  4.  pipeline {
         agent any
         triggers { pollSCM '* * * * *' }
         stages {
             stage('Test') {
                 steps { echo 'Hello World!' }
             }
         }
     }
  5. Select under Pipeline -> Definition -> Pipeline script from SCM

  6. SCM -> Git

  7. Fill in your Repository URL, Credentials, specify the Branch and Script Path (jenkinsfile)

Agents

The basic agents to connect Jenkins (master) with another machine (slave)

Jenkins

Authentification and user management methodes

A few examples of how you could manage users. Can be extended by various plugins

Recommended plugins

Recommended plugins that could be helpful

GitHub and other tools

Create credentials for GitHub

How to create credentials for GitHub to connect to Jenkins

  1. Go to Settings -> Developer settings -> Personal access token
  2. Generate new Token
  3. Give a name and the needed rights ("repo")
  4. Generate Token and save it somewere
  5. Go to Jenkins -> Manage Jenkins -> Credentials -> (global) -> Add credentials
  6. Username -> Your GitHub User Password -> Your Token ID -> A fitting name
  7. Create

3rd party tools

Convenient 3rd party tools

  • VSCode
  • Git
  • Nexus OSS

Usefull sites

  • Pipeline Syntax -> https://www.jenkins.io/doc/book/pipeline/syntax/
  • Agents -> https://www.jenkins.io/doc/book/using/using-agents/
  • User management -> https://www.jenkins.io/doc/book/security/managing-security/