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

casosf-commons-1

v1.0.0

Published

task-information/task-information-sf common components

Downloads

4

Readme

NPM

Acá encontrarás las definiciones por default para los CI para compilar y desplegar en Nexus, este es un trabajo colaborativo del equipo de DevOps. Ante cualquier duda o sugerencia, por favor contectarnos a través del canal de Slack #gitlab-openshift

Steps

Los pasos estándar varían ligeramente según las tecnologías. Mínimamente, una pipeline debería consistir de:

  • build
  • test
  • pack
  • quality
  • validator
  • security
  • publish

Estos steps se ejecutan siempre que se puedan con un Gitlab Runner tipo BASH DOCKER.

GitFlow

Como Existe un unico nexus cuya dirección es http://nexus.ar.bsch/ , este solo se publica en la rama master permitiendo tener distintas versiones de código y solo publicar la necesaria cuando llega a Master

Nexus

Se verifica que el repositorio de Nexus exista o se crea automaticamente con la pipeline, esto se hace a través de las variables del archivo: .ci-variables.yml

Para la subida de artefactos a nexus se utiliza un archivo json llamado artifacts

USO DE artifacts.json

{
  "artifacts": [
    {
      "UPLOAD_ARTIFACT": "[GROUP]-[NAME]-[SEMVER].tgz"
    }
  ]
}

Pablo Novas genero un script de Node para automatizar la generación de este file ( Solo 1 artefacto en el siguiente confluence https://confluence.ar.bsch/pages/viewpage.action?pageId=35233336

Si se tiene más de un artfacto se lo agrega en el json separado por coma

Tomar de ejemplo el que se encuentra en este repositorio con todas sus VARIABLES ya definidas

USO DE .CI-VARIABLES Y TEMPLATES

Para que el uso de los templates funcione correctamente, es requerido que las variables definidas en este archivo cotnengan un valor. No se podrán modificar el nombre de las variables. Solo se puede modificar el valor de la derecha, en caso de no modificar se tomara el valor que esta por defecto en este archivo.

.ci-variables.yml


variables:

#### Configuración Nexus ####
    TECHNOLOGY: "npm" # Este valor siempre debe estar en minuscula
    REPOSITORY_TYPE: "hosted"	
    REPOSITORY_NAME: "TemplateNPMNexus"
#### Versión de NPM a utilizar. Puede ser 8, 10, o 12 ####
    NPM_VERSION: '12'

#### QUALITY SONAR ####
  TECNOLOGY: "npm" 
  SONAR_EXCLUSIONS_FILES: ""
  SONAR_TEST_PATH_JUNIT: ""

F.A.Q en los Pipelines