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

tagon

v1.0.0

Published

TAGON is a powerful addon to your html code which is written in javascript that provides you the modern functionalities in a simplified way also it's a free and Open source project

Downloads

55

Readme

Welcome to TAGON

TAGON is a powerful addon to your html code which is written in javascript that provides you the modern functionalities in a simplified way also it's a free and Open source project

made with ❤ for the devlopers by MANIKANDAN SRINIVASALU

Effects tags

  • blur-it

this tag helps to blur the content in a html page

    <blue-it value="2">
        sample text
    </blue-it>

| attribute | value | | :--------: | :-------: | | value | 0.1 to n |

popup tags

  • text-popup

this element helps to popup an ALERT-BOX with a msg and you may also redirect the page after the selection of ok button in the popup box

    <text-popup msg="your msg" goto="<filepath>">
        sample text
    </text-popup>

| attribute | value | | :--------: | :-------: | | msg | you can writ e any message to it | | goto | the path EG: "/static/about.html" |

Transition tags

some common Transition attributes

note: * the tag must contain all the attributes as mentioned in the samplecode *

| attribute | value | | :--------: | :-------: | | duration | starts from 0 (1000 = 1s) | | loop | no.of.times 1,2...N values (or) Infinity | | animetype | ease-in, ease-out, linear, ease-in-out | | deg | -x to x where { x = 0 to N values } | | move | -x to x values (default px) |

  • move-v

this tag helps you to move your content - vertically

<move-v move="100" duration="2000" animetype="linear" loop="Infinity">sample text</move-v>
  • move-h

this tag helps you to move your content - horizontally

<move-h move="-100" duration="2000" animetype="ease-in" loop="1">sample text</move-h>
  • scale-v

this tag helps you to scale your content - vertically

<scale-v scale="2" duration="2000" animetype="linear" loop="Infinity">sample text</scale-v>
  • scale-h

this tag helps you to scale your content - horizontally

<scale-h scale="3" duration="2000" animetype="ease-in" loop="1">sample text</scale-h>
  • scale-it

this tag helps you to scale your content - both vertically and horizontally

<scale-it scale="2" duration="2000" animetype="linear" loop="Infinity">sample text</scale-it>
  • rotate-it

this tag helps you to animate your content - rotate to a degree

<rotate-it deg="-100" duration="2000" animetype="ease-in-out" loop="1">sample text</rotate-it>
  • rotate-tostart

this tag helps you to animate your content - rotate to a degree and comes back to the start position

<rotate-it deg="-100" duration="2000" animetype="ease-in-out" loop="1">sample text</rotate-it>
  • whats-app

this tag helps you to directly access the chat page of the service provider

<whats-app number="091234567890" msg="hello" content="any content" image="path/sample.png" imgh="30px" imgw="30px" instyle="any-css-styling"></whats-app>

| attribute | value | | :--------: | :-------: | | number | whatsapp number with country code | | msg | the predefined message you wish to get| | content | to display in the html page (use " " if no content)| | image | add png/jpg img (use " " if no image)| | imgh | height of image in px eg: 20px | | imgw | width of image in px eg: 20px | | instyle | write your custom css style for the content |

  • time-line

this tag helps you to write a simple timeline

<time-line info="2024" title="Project begin" detail="description about the title" side="left"></time-line>

| attribute | value | | :--------: | :-------: | | info | timeline info eg:2003 , date , text etc | | title | heading | | detail | description about the timeline | | side | left or right | | icon | image (use " " if no image)| |want to style ?|do it with given below attributes| |infocolor, titlecolor, detailcolor, iconcolor| to color the fonts| | infomoveh, infomovev ,iconmove | move in directions (default px)| | iconheight, iconwidth, iconradius, iconborder | border use css style (use " " if no needed) eg:2px solid black|

  • read-json, read-xml , read-csv

all these read tags helps you to display their respective data in an html page

<read-json src="path/file.json"></read-json>
<read-xml src="path/file.xml"></read-xml>
<read-csv src="path/file.csv"></read-csv>

| attribute | value | | :--------: | :-------: | | src | use local file or apis both works eg:jsonapi| |this is only for|-read-csv-| | thborder, tdborder | border with css eg:2px solid black | | thpad, tdpad| padding eg30px | | thbgcolor, thbgcolor | all color | | thalign, tdalign | left,center,right |

  • net-info

this tag displays the connectivity of the page to the network as offline / online and it displays on the screen only for 4 seconds if you need you can apply css styling to it

<net-info styleoff="write css for offline"
 styleon="write css for online"></net-info>
  • go-up

this tag push you to the top of the page and completely customizable by css

<go-up text="write your text"></-up>
  • scroll-progress

this tag displays the progess of the page scrolling and it is fixed at the top

<scroll-progress barcolor="grey" progresscolor="violet" barheight="5px"></scroll-progress>

| attribute | value | | :--------: | :-------: | | barcolor | secondary or basecolor| | progresscolor | primary or moving color| | barheight | height of the scroll progressbar|