Socket
Socket
Sign inDemoInstall

@twind/core

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@twind/core

compiles tailwind like shorthand syntax into CSS


Version published
Weekly downloads
8.3K
increased by7.35%
Maintainers
1
Weekly downloads
 
Created
Source

@twind/core

Minimal implementation of a tailwind-compatible CSS-in-JS framework.

This package does not contain any Tailwindcss rules. These are defined in @twind/preset-tailwind.


READ THIS FIRST!

Twind v1 is still in beta. Expect bugs!


Installation

Install from npm:

# Using npm
npm install @twind/core@next

# Using Yarn
yarn add @twind/core@next

Usage

import { twind, cssom, observe } from '@twind/core'

const tw = observe(
  twind(
    {
      theme: {
        /* .. */
      },
      rules: [
        /* ... */
      ],
    },
    cssom(),
  ),
)

API

twind

TDB

cx

import { cx } from '@twind/core'

// Set a className
element.className = cx`
  underline
  /* multi
    line
    comment
  */
  hover:focus:!{
    sm:{italic why}
    lg:-{px}
    -mx-1
  }
  // Position
  !top-1 !-bottom-2
  text-{xl black}
`

shortcut

TDB

style

TDB

extract(html, tw)

Used for static HTML processing (usually to provide SSR support for your javascript-powered web apps) — powered by consume(html, tw)

Note: This clears the Twind instance before processing the HTML.

import { twind, virtual, extract } from '@twind/core'

// can be re-used
const tw = twind(
  {
    /* config */
  },
  virtual(),
)

function render() {
  const { html, css } = extract(renderApp(), tw)

  // inject as last element into the head
  return html.replace('</head>', `<style data-twind>${css}</style></head>`)
}

consume(html, tw)

Used for static HTML processing (usually to provide SSR support for your javascript-powered web apps)

  1. parse the markup and process element classes with the provided Twind instance
  2. update the class attributes if necessary
  3. return the HTML string with the final element classes
import { twind, virtual, consume, stringify } from '@twind/core'

// can be re-used
const tw = twind(
  {
    /* config */
  },
  virtual(),
)

function render() {
  const html = renderApp()

  // clear all styles
  tw.clear()

  // generated markup
  const markup = comsume(html, tw)

  // create CSS
  const css = stringify(tw.target)

  // inject as last element into the head
  return markup.replace('</head>', `<style data-twind>${css}</style></head>`)
}

Keywords

FAQs

Package last updated on 19 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc