Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Twind v1 is still in beta. Expect bugs!
Twind v1 is a complete rewrite aiming to be compatible with Tailwind v3 classes
Tailwind right in the browser without any build step.
npm i twind@next
import { setup } from 'twind'
// You must call setup atleast once, but can call it multiple times
setup({
/* options */
})
Incase you are not using SSR to inject the pre-computed styles apply the following pattern to prevent FOUC:
<body class="!block" style="display: none">
<!-- ... -->
</body>
Script tag without a build step
Add this line to your index.html
:
<head>
<!-- ... -->
<script src="https://cdn.jsdelivr.net/npm/twind@next" crossorigin></script>
<!-- ... -->
</head>
To configure Twind add a script block after the previous one (optional):
<script>
twind.setup({
presets: [
// custom presets...
],
theme: {
extend: {
colors: {
clifford: '#da373d',
},
},
},
rules: [
// custom rules...
],
// ...
})
</script>
Presets
To add another preset add its script after the current one:
<head>
<!-- ... -->
<script src="https://cdn.jsdelivr.net/npm/twind@next" crossorigin></script>
<script src="https://cdn.jsdelivr.net/npm/@twind/preset-ext@next" crossorigin></script>
<script>
twind.setup({
presets: [twind_presetExt()],
// ...
})
</script>
<!-- ... -->
</head>
API: accessible through the global twind
variable
twind.setup
twind.tw
— from @twind/runtimetwind.*
— everything from @twind/coretwind/cdn
A drop-in replacement for Tailwind CSS Play CDN that is almost 6 times smaller (96.4kb vs 16.9kB).
import { setup } from 'twind/play-cdn'
<script src="https://cdn.jsdelivr.net/npm/twind@next/cdn.global.js" crossorigin></script>
Presets
API — accessible through the global twind
variable
twind.setup
twind.tw
— from @twind/runtimetwind/core
import { setup } from 'twind/core'
<script src="https://cdn.jsdelivr.net/npm/twind@next/core.global.js" crossorigin></script>
Presets
None
API — accessible through the global twind
variable
twind.setup
twind.tw
— from @twind/runtimetwind.*
— everything from @twind/coresetup(config [, sheet [, target]])
Can be called as many times as you want.
FAQs
compiles tailwind like shorthand syntax into css at runtime
The npm package twind receives a total of 6,216 weekly downloads. As such, twind popularity was classified as popular.
We found that twind demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.