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

titan-css-plus

v1.0.5

Published

Runtime utility-first CSS engine (Pro version)

Downloads

376

Readme

Titan-CSS Plus 🚀

Titan-CSS Plus is a runtime-powered, utility-first CSS engine that generates styles dynamically from your HTML—no pre-compilation, no config, no hassle.


⚡ Features

  • ⚙️ Runtime CSS generation (no build step required)
  • 📦 Works with both CDN and npm
  • 🧠 Smart class parsing engine
  • 🔁 DOM scanning & live style injection
  • 💨 Lightweight and fast

📦 Installation

npm

npm install titan-css-Plus

CDN

<script src="https://cdn.jsdelivr.net/npm/titan-css-plus/dist/titan.js"></script>

🎨 Utility Pattern

namespace-prefix-value

Example:

titan-text-18 → font-size:18px;

🧩 Available Styles

🎨 Colors

  • titan-bg-redbackground-color:red;
  • titan-color-bluecolor:blue;

🔤 Typography

  • titan-text-18font-size:18px;
  • titan-weight-700font-weight:700;
  • titan-lh-24line-height:24;
  • titan-align-centertext-align:center;
  • titan-transform-uppercasetext-transform:uppercase;
  • titan-spacing-2letter-spacing:2px;

📐 Layout & Display

  • titan-display-flexdisplay:flex;
  • titan-hiddendisplay:none;
  • titan-flexdir-rowflex-direction:row;
  • titan-justify-centerjustify-content:center;
  • titan-items-centeralign-items:center;
  • titan-gap-10gap:10px;
  • titan-width-200width:200px;
  • titan-height-100height:100px;
  • titan-opacity-0.5opacity:0.5;

🧱 Borders

  • titan-radius-10border-radius:10px;
  • titan-border-1px-solid-blackborder:1px solid black;
  • titan-bordercolor-redborder-color:red;

📦 Spacing

Padding

  • titan-p-20, titan-px-10, titan-py-10, titan-pt-10 etc.

Margin

  • titan-m-20, titan-mx-10, titan-my-10, titan-mt-10 etc.

🧪 Example

<div
  class="titan-bg-black titan-color-white titan-p-20 titan-radius-10 titan-text-18"
>
  Titan CSS Plus 🔥
</div>

🧠 How It Works

  • Scans DOM for class names
  • Parses namespace-prefix-value
  • Uses rule engine to map styles
  • Injects CSS into a <style> tag
  • Caches rules for performance

📁 Plusject Structure

titan-css-Plus/
├── src/
│   ├── runtime.js   # DOM scanner & injector
│   └── rules.js     # style definitions & mappings
├── dist/
│   └── titan.js     # bundled output
├── package.json


🧑‍💻 Author

Prakash Jangid


📜 License

MIT


🚀 Future Plans

  • Responsive variants (md:, lg:)
  • Pseudo states (hover:)
  • Plugin system
  • Custom themes

⭐ Support

If you like Titan-CSS Plus, give it a star ⭐