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 🙏

© 2025 – Pkg Stats / Ryan Hefner

unpack-tailwindcss-3.4.17

v3.4.17

Published

Unpacked version of TailwindCSS 3.4.17 from CDN

Readme

Unpack TailwindCSS 3.4.17

Repository contenente la versione unpacked di TailwindCSS 3.4.17 scaricata dalla CDN ufficiale.

📦 Contenuto

Questa repository contiene i file JavaScript completi di TailwindCSS versione 3.4.17 scaricati da:

  • CDN ufficiale: https://cdn.tailwindcss.com/3.4.17
  • unpkg.com: https://unpkg.com/[email protected]
  • Versione: 3.4.17
  • Formato: JavaScript minificato

📁 Struttura

unpack-tailwindcss-3.4.17/
├── dist/
│   ├── tailwindcss-3.4.17.js    # File JavaScript completo (CDN ufficiale)
│   ├── SHA256SUM.txt            # Checksum del file CDN
│   └── unpkg/                    # File da unpkg.com
│       ├── tailwindcss-3.4.17.js
│       ├── SHA256SUM.txt
│       └── README.md
├── docs/                         # Documentazione aggiuntiva
├── README.md                     # Questo file
└── package.json                  # Metadati del progetto

🚀 Utilizzo

Includere nel tuo progetto HTML

Da CDN ufficiale:

<script src="https://cdn.tailwindcss.com/3.4.17"></script>

Da unpkg.com:

<script src="https://unpkg.com/[email protected]"></script>

File locale (CDN):

<script src="./dist/tailwindcss-3.4.17.js"></script>

File locale (unpkg):

<script src="./dist/unpkg/tailwindcss-3.4.17.js"></script>

Utilizzo con Node.js

// Se necessario, puoi caricare il file come modulo
const tailwindcss = require('./dist/tailwindcss-3.4.17.js');

📝 Note

  • Il file è in formato minificato per ottimizzare le dimensioni
  • Questa è una versione standalone di TailwindCSS che può essere utilizzata direttamente nel browser
  • Per progetti di produzione, si consiglia di utilizzare il processo di build standard di TailwindCSS

🔗 Link Utili

📄 Licenza

TailwindCSS è rilasciato sotto licenza MIT. Consulta il repository ufficiale per i dettagli completi della licenza.

📅 Data di Creazione

Repository creata il: $(date +"%Y-%m-%d")

📤 Come Pubblicare questa Repository

🌐 Pubblicare su unpkg.com (Raccomandato)

unpkg.com serve automaticamente i pacchetti npm! Per pubblicare su unpkg:

  1. Pubblica su npm (vedi PUBBLICAZIONE_UNPKG.md)
  2. Automaticamente disponibile su unpkg.com 🎉

Script rapido:

./PUBBLICA_SU_NPM.sh

Manuale:

npm login
npm publish --access public

Dopo la pubblicazione, sarà disponibile su:

  • https://unpkg.com/@tuousername/unpack-tailwindcss-3.4.17

📂 Pubblicare su GitHub

Per pubblicare questa repository su GitHub, consulta il file PUBBLICAZIONE.md per una guida passo-passo completa.

Quick Start (GitHub)

# 1. Inizializza Git
git init

# 2. Aggiungi tutti i file
git add .

# 3. Crea il primo commit
git commit -m "Initial commit: TailwindCSS 3.4.17 unpacked"

# 4. Crea la repository su GitHub, poi:
git remote add origin https://github.com/TUO_USERNAME/unpack-tailwindcss-3.4.17.git
git branch -M main
git push -u origin main