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

@strato-css/vue

v1.1.0

Published

Vue integration for Strato CSS framework

Readme

@strato-css/vue

Vue integration for Strato CSS framework. Provides Vue 3 directives and composables for using Strato CSS in Vue applications.

Installation

pnpm add @strato-css/vue

Usage

Plugin Setup

Install the plugin in your Vue app:

import { createApp } from 'vue';
import { StratoPlugin } from '@strato-css/vue';
import App from './App.vue';

const app = createApp(App);

app.use(StratoPlugin, {
  theme: {
    colors: {
      primary: '#3b82f6'
    }
  }
});

app.mount('#app');

v-strato Directive

Use the v-strato directive to apply utilities conditionally:

<template>
  <div v-strato="'p-4 bg-white rounded'">Hello Strato CSS!</div>
</template>

Dynamic utilities:

<template>
  <div
    v-strato="[
      'p-4 rounded',
      isActive && 'bg-primary text-white',
      !isActive && 'bg-gray-200'
    ]"
  >
    Dynamic classes
  </div>
</template>

<script setup lang="ts">
import { ref } from 'vue';

const isActive = ref(true);
</script>

useStrato Composable

Generate utilities programmatically:

<template>
  <div :class="classes">Content</div>
</template>

<script setup lang="ts">
import { useStrato } from '@strato-css/vue';

const classes = useStrato('p-4 bg-white rounded');
</script>

Dynamic utilities with composable:

<template>
  <div :class="buttonClasses">Click me</div>
</template>

<script setup lang="ts">
import { ref, computed } from 'vue';
import { useStrato } from '@strato-css/vue';

const variant = ref<'primary' | 'secondary'>('primary');

const buttonClasses = useStrato(
  computed(() => [
    'px-4 py-2 rounded font-semibold',
    variant.value === 'primary' && 'bg-primary text-white',
    variant.value === 'secondary' && 'bg-gray-200 text-gray-800'
  ])
);
</script>

useStratoTheme Composable

Access theme values:

<template>
  <div :style="{ color: theme.colors.primary }">Themed text</div>
</template>

<script setup lang="ts">
import { useStratoTheme } from '@strato-css/vue';

const theme = useStratoTheme();
</script>

Directives Reference

v-strato

Apply utility classes to elements.

<div v-strato="'p-4 bg-white'">Content</div>

With array:

<div v-strato="['p-4', 'bg-white', 'rounded']">Content</div>

With conditional utilities:

<div v-strato="[isActive && 'bg-primary', isHover && 'scale-105']">Content</div>

Composables Reference

useStrato

Generate CSS classes from utilities.

const classes = useStrato('p-4 bg-white rounded');

Parameters:

  • utilities: String, array, or computed ref of utility strings

Returns:

  • Ref containing CSS class names

useStratoTheme

Access the theme configuration.

const theme = useStratoTheme();

Returns:

  • Ref containing theme object

Examples

Dynamic Button Component

<template>
  <button
    v-strato="[
      'px-4 py-2 rounded font-semibold transition',
      variant === 'primary' && 'bg-primary text-white hover:bg-primary-600',
      variant === 'secondary' && 'bg-gray-200 text-gray-800 hover:bg-gray-300',
      size === 'sm' && 'text-sm px-3 py-1',
      size === 'lg' && 'text-lg px-6 py-3'
    ]"
  >
    <slot />
  </button>
</template>

<script setup lang="ts">
import { prop, withDefaults } from 'vue';

interface Props {
  variant?: 'primary' | 'secondary';
  size?: 'sm' | 'md' | 'lg';
}

const props = withDefaults(defineProps<Props>(), {
  variant: 'primary',
  size: 'md'
});
</script>

Card Component

<template>
  <div v-strato="cardClasses">
    <h2 v-strato="'text-xl font-bold mb-2'">{{ title }}</h2>
    <p v-strato="'text-gray-600'">{{ description }}</p>
  </div>
</template>

<script setup lang="ts">
import { computed } from 'vue';
import { useStrato } from '@strato-css/vue';

interface Props {
  title: string;
  description: string;
}

const props = defineProps<Props>();

const cardClasses = useStrato(
  computed(() => ['bg-white rounded-lg shadow-md p-6'])
);
</script>

SSR Support

The plugin supports Vue 3 SSR:

// entry-server.ts
import { createSSRApp } from 'vue';
import { StratoPlugin } from '@strato-css/vue';
import App from './App.vue';

export function createApp() {
  const app = createSSRApp(App);
  app.use(StratoPlugin);
  return app;
}

Development

Testing

# Run all tests
pnpm test

# Run tests in watch mode
pnpm test --watch

# Run tests with UI
pnpm test:ui

# Run tests with coverage
pnpm test:coverage

Build

# Build the package
pnpm build

# Build in watch mode
pnpm dev

Type Checking

# Run TypeScript type checking
pnpm typecheck

License

MIT