
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
@cldn/components
Advanced tools
Base classes for creating web components.
This library is intended for use in a web browser environment. A bundler, such as Webpack or Vite is recommended.
npm i @cldn/components
To create your own components, it's recommended to extend one of the classes provided in this library.
For example:
import {Component} from "@cldn/components";
class ButtonComponent extends Component<HTMLButtonElement> {
public constructor(text: string) {
super("button");
this.text(text)
.class("bg-blue-500", "px-4", "…");
}
}
Copyright © 2024–2025 Cloudnode OÜ.
This file is part of @cldn/components.
@cldn/components is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@cldn/components is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with @cldn/components. If not, see https://www.gnu.org/licenses/.
FAQs
Base classes for web components
We found that @cldn/components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.
Research
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.