
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
code-hike-classer-vue3
Advanced tools
A little package to make Vue3 component libraries interoperable with most styling solutions.
A little package to make React component libraries interoperable with most styling solutions.
https://stackblitz.com/edit/vitejs-vite-oqvfsr
npm i
# with usage demo
npm run dev
full demo:
npm run dev
<script setup lang="ts">
import { css } from '@emotion/css';
import { ClasserProvider } from 'code-hike-classer-vue3';
import Child from './components/Child.vue';
const color = 'white';
const motion = css`
background-color: hotpink;
&:hover {
color: ${color};
}
`;
</script>
<template>
<classer-provider
:classes="{
'sp-title': 'title-1 title-2',
'sp-motion': motion,
}"
>
<child />
</classer-provider>
</template>
<template>
<button :class="[c('title', 'motion', 'other')]">i am child</button>
</template>
<script setup lang="ts">
import { useClasser } from 'code-hike-classer-vue3';
const c = useClasser('sp', { 'sp-other': 'custom-class' });
</script>
<div class="sp-title sp-motion sp-other title-1 title-2 css-64o2cv custom-class">i am child</div>
css-64o2cv
is motion style
npx browserslist
FAQs
A little package to make Vue3 component libraries interoperable with most styling solutions.
We found that code-hike-classer-vue3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.