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

@vitus-labs/connector-native

v2.7.2

Published

React Native connector for @vitus-labs/core CSS engine

Readme

@vitus-labs/connector-native

CSS engine adapter for React Native — parses CSS template literals into style objects.

npm license

Bridges the Vitus Labs component system to React Native. Instead of generating CSS class names and injecting <style> rules (as web connectors do), it parses CSS template literals into React Native StyleSheet-compatible objects and applies them via the style prop.

Installation

npm install @vitus-labs/connector-native

Peer dependencies: react, react-native

Usage

import { init } from '@vitus-labs/core'
import { View, Text } from 'react-native'
import {
  css,
  styled,
  provider,
  useTheme,
  createMediaQueries,
} from '@vitus-labs/connector-native'

init({
  css,
  styled,
  provider,
  useTheme,
  component: View,
  textComponent: Text,
  createMediaQueries,
})

Exports

| Export | Description | | ------ | ----------- | | css | Tagged template that parses CSS strings into RN style objects | | styled | HOC that resolves CSS template and applies via style prop | | provider / ThemeProvider | Theme context provider | | useTheme | Hook to access the current theme | | createMediaQueries | Breakpoint evaluator using Dimensions.get('window').width |

css()

Parses CSS declarations into flat style objects:

import { css } from '@vitus-labs/connector-native'

const base = css`
  width: 100px;
  background-color: blue;
  border-radius: 8px;
`
base.resolve({}) // { width: 100, backgroundColor: 'blue', borderRadius: 8 }
  • CSS property names convert to camelCase (background-color -> backgroundColor)
  • Numeric values parse to numbers (100px -> 100)
  • Supports dynamic interpolations: ${(p) => p.$color}

styled()

Creates a React component that resolves CSS into a style prop:

import { styled } from '@vitus-labs/connector-native'
import { View } from 'react-native'

const Box = styled(View)`
  padding: 16px;
  background-color: #f0f0f0;
`

Prop filtering: as, $-prefixed, and data-* props are not forwarded. Customize with shouldForwardProp.

createMediaQueries

Evaluates breakpoints using Dimensions.get('window').width at render time (mobile-first). Passed to init() and used automatically by @vitus-labs/unistyle.

Differences from Web Connectors

| Feature | Web | Native | |---------|-----|--------| | Output | CSS string -> class name | Style object -> style prop | | @media queries | Native CSS | Dimensions width check | | CSS nesting (&:hover) | Supported | Ignored | | keyframes | Supported | Not available | | createGlobalStyle | Supported | Not available |

Peer Dependencies

| Package | Version | | ------- | ------- | | react | >= 19 | | react-native | >= 0.76 |

License

MIT