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

t3am-npm

v1.0.2

Published

First tests with NPM

Readme

GUIAS DE USO EN NPM

GLOBAL

Acciones

Actualizacion de Npm

npm install -g @

Configuracion Global de Npm

npm set init.author.name @Nombre de usuario npm set init.author.email Email de usuario npm set init.author.url Url de Usuario npm set init.license Licencia

Cuenta de Npmjs.com

npm adduser usuario y password

Flags

Alias

-i, add, install Instalacion -g, --global Instalacion global

Instalacion

npm install Instalacion desde directorio local o archivo comprimido npm install Instalacion desde un repositorio remoto npm install @ Instala paquete con su propia version (latest por defecto) npm install <@dev>@ Instala desde el registro del desarrollador del paquete @latest Ultima actualizacion del paquete

Adicionales (modificadores para package.json)

-S, --save opcion por defecto, registrado en dependecies -E, --save-exact registra la version exacta -E, --save-bundle registra la version exacta -D, --save-dev en desarrollo, registrado en devDependecies -P, --save-prod produccion, registrado en dependecies -O, --save-optional opcional, registrado en optionalDependecies --no-save no guarda registro alguno

Configuracion Global de Git

git config --global user.name @Nombre de usuario git config --global user.email Email de usuario git config --global core.editor Editor de git git config --list Visualizamos la configuracion de git

Command

npm install -g npm@latest
npm set init.author.name "@T3am."
npm set init.author.email "[email protected]"
npm set init.author.url "https://EngineLand.dev"
npm set init.license "MIT"
npm adduser

git config --global user.name "@T3am."
git config --global user.email "[email protected]"
git config --global core.editor "C:\\Program Files\\Microsoft VS Code\\Code.exe" --wait

INICIO DE REPOSITORIO

Acciones

  • Creamos una nueva carpeta
  • Inicializamos Git
  • Inicializamos Npm
  • Configuramos Package.json
  • Creamos y adaptamos .gitignore

Command

mkdir Npm && cd Npm
git init
npm init -y

git add .
git commit -m "Inicio de Repositorio"

INSTALACION DE DEPENDENCIAS

Acciones

  • Instalamos Bootstrap en modo de desarrollo
  • Instalamos @Fontawesome free en modo de desarrollo
  • Instalamos Webpack en modo de desarrollo
  • Instalamos Webpack CLI en modo desarrollo

Command

npm i -D bootstrap@latest
_npm i github:EngineLanTeam/Npm_
npm i -D @fortawesome/fontawesome-free
npm i -D webpack
npm i -D webpack-cli

git add .
git commit -m "Instalacion de Dependencias"

PUBLICACIOM EN NPM

Acciones

  • Publicacion global de nuestro paquete en local
  • Vinculamos a cuentas de Npmjs y Github
  • Publicamos nuestro paquete en Npmjs
  • Patch version en npmjs
  • Actualizamos version de npm
  • Actualizamos version de git
  • Remote en github

Command

npm link
_npm install -g C:\laragon\www\Npm_
npm adduser
npm version patch
git tag -a v1.0.0 -m "Version Inicial"
npm publish
npm install -g
git remote add origin https://github/EngineLandTeam/Npm.git

git add .
git commit -m "Publicacion en Npm"
git push origin master
git push origin --tags

README GLOBAL

Acciones

  • Incluimos en Readme instrucciones mas usadas
  • Actualizamos version de npm
  • Actualizamos version de git
  • Remote

Command

npm link
npm version patch
npm publish
_git tag -a v1.0.2 -m "Readme Global"_

git add .
git commit -m "Readme Global"
git push origin master
git push origin --tags

Logo