
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@fewangsit/wangstencil
Advanced tools
A fully-typed, design-system-ready component library powered by Stencil, with complete Tailwind CSS compatibility through a well defined preset structure per component.
This system is unstyled by default, but every component comes with a strongly typed preset structure. That means you can style your components entirely through TypeScript using utilities like Tailwind CSS — all with full IntelliSense, type safety, and customization control.
🧩 Unstyled but Structured: You control the styling — we provide a solid, typed preset structure to help you build fast with confidence.
🎯 Fully Typed Presets: Every component has defined shape and preset options, so you get autocomplete and type checking when styling.
🧠 Powered by Stencil: Use modern standards-based Web Components that work in any major framework or with no framework at all.
🌪 TailwindCSS Compatible: Seamlessly integrate with Tailwind CSS for utility-first styling and Intellisense out of the box.
Here's a sample preset structure for a TabMenu component:
const preset: ToRawPreset<TabMenuPreset, TabMenuPresetMethodOptions> = {
root: {
class: 'overflow-x-auto',
},
...
};
git clone https://github.com/fewangsit/wangstencil.git
cd wangstencil
git remote rm origin
pnpm i
pnpm dev
Start developing your components by editing the files in src/components.
pnpm dev: Start the dev server and watch for file changes.pnpm build: Build the components for production.pnpm test: Run unit tests.Avoid using stencil in your component names. Instead, use a namespace relevant to your design system or company, such as:
<wangs-button></wangs-button>
After building and publishing your package to NPM, you can use it in various environments.
Add this to your HTML file:
<script type="module" src="https://unpkg.com/wangstencil@latest"></script>
<wangs-button label="Click Me"></wangs-button>
For direct imports without redirection:
<script type="module" src="https://unpkg.com/wangstencil@0.0.1/dist/wangstencil/wangstencil.esm.js"></script>
Import the compiled components into your app:
// main.tsx or equivalent
import 'wangstencil/dist/wangstencil/wangstencil.esm.js';
Then use the components like native HTML elements:
function App() {
return (
<div>
<wang-button label="Stencil + Tailwind FTW"></wang-button>
</div>
);
}
Make sure you’ve enabled dist-custom-elements in stencil.config.ts. Then you can import individual components directly:
import 'wangstencil/my-component';
This project is proprietary software. It is not open source and may not be copied, modified, or used without permission.
FAQs
Stencil Component Starter
We found that @fewangsit/wangstencil demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.