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

libraryproject

v1.1.0

Published

This is a mini library that helps with the interaction of the divs in a webpage.

Readme

img

Una mini librería que sirve para atraer la atención del usuario a tu página web por medio de divertidas animaciones proporcionadas a los divs de tu html.

Instalación

Si posees npm, puedes guardarlo de la siguiente manera

npm install libraryproject --save

Si no, puedes forkear este repositorio y clonarlo en tu proyecto

git clone https://github.com/mthompsonc/library-project

Aplicandolo a tu proyecto

Primero, debes adjuntar el script que se encuentra en la carpeta src

<script src="src/addictive.js"></script>

O bien, añadir el CDN de la librería, en caso que no desees descargarla.

<script src="https://cdn.rawgit.com/mthompsonc/library-project/developer/src/addictive.js"></script>

Luego, simplemente utilizas los plugins encontrados en la librería aplicándolos al elemento que desees (elemento al que llames por medio de DOM o jQuery).

$("#cualquierDiv").slideRight();
$("#cualquierDiv").slideLeft();
$("#cualquierDiv").slideTop();

Para hacer uso del plugin slideTop es necesario aplicarlo a un div vacío, ya que la librería le agregará el botón.

<div id='cualquierDiv'></div>

Requerimientos técnicos:

Para realizar este proyecto implementamos las siguientes complementos:

  • node.js ~v.8.9.4
  • npm ~v.5.6.0
  • bootstrap ~v.4.0.0
  • jQuery ~v.3.3.1
  • git ~v.2.16.0
  • eslint ~v.4.15.0
  • babel v.6.23.0
  • chai v.4.1.2
  • mocha v.5.0.0
  • jsdom v.11.6.1

img

A mini-library you can use in your webpage to draw the attention of your users with fun animations given to any div (if not all!) of your html.

Install

If you have npm, you can install it by the following command

npm install libraryproject --save

else, you can fork this repository and clone it in your project

git clone https://github.com/mthompsonc/library-project

Setup

First, you need to attach the script located in the folder src

<script src="src/addictive.js"></script>

Or else, if you do not wish to download the library, you could attach the CDN

<script src="https://cdn.rawgit.com/mthompsonc/library-project/developer/src/addictive.js"></script>

Then, you can simply trigger the animations by applying the plugins to any element you want (element you can call by DOM or Jquery)

$("#anyDiv").slideRight();
$("#anyDiv").slideLeft();
$("#anyDiv").slideTop();

To work with the plugin slideTop it's necessary to apply it to an empty div, being that the library will add the button.

<div id='anyDiv'></div>

Technical requirements:

To make this project we used the following components:

  • node.js ~v.8.9.4
  • npm ~v.5.6.0
  • bootstrap ~v.4.0.0
  • jQuery ~v.3.3.1
  • git ~v.2.16.0
  • eslint ~v.4.15.0
  • babel v.6.23.0
  • chai v.4.1.2
  • mocha v.5.0.0
  • jsdom v.11.6.1