Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@vtmn/svelte
Advanced tools
@vtmn/svelte
Decathlon Design System - Vitamin Svelte components library
After installing npm or yarn, you can install @vtmn/svelte
with this command:
# with npm
npm i -S @vtmn/svelte
# with yarn
yarn add @vtmn/svelte
Roboto & Roboto Condensed fonts as described in Typography section will not be automatically loaded. Fortunately, there is a few easy ways to get started.
Shown below is a sample link markup used to load from a CDN:
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Roboto+Condensed:ital,wght@0,400;0,700;1,700&display=swap"
/>
You can also do it via CSS Import:
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Roboto+Condensed:ital,wght@0,400;0,700;1,700&display=swap');
Otherwise, you can install them with typeface
:
# with npm
npm i -S typeface-roboto typeface-roboto-condensed
# with yarn
yarn add typeface-roboto typeface-roboto-condensed
Then, you can import them in your entry-point:
import 'typeface-roboto';
import 'typeface-roboto-condensed';
If you need to use Svelte components with icons displayed (via props for icons in some components), you will need to install @vtmn/icons
package.
# with npm
npm i -S @vtmn/icons
# with yarn
yarn add @vtmn/icons
Then, import the icon font in the entry point of your React application:
import '@vtmn/icons/dist/vitamix/font/vitamix.css';
Or you can also import it with a CDN like unpkg.com
with this file.
To use this package, you need to use the source files and compile on your side. To do so, you can start with +SvelteKit for example.
Then, you just need to import components you need. Example with VtmnButton
:
// App.svelte
<script>
import { VtmnButton } from '@vtmn/svelte';
<script>
<VtmnButton>Button</VtmnButton>
To know all the use cases and their associated code, check out the showcase here.
If you want to know the different changes between versions of this package, look at the changelog here.
Please file the issue here.
Apache-2.0 © Decathlon
FAQs
Decathlon Design System - Vitamin Svelte components library
The npm package @vtmn/svelte receives a total of 8,736 weekly downloads. As such, @vtmn/svelte popularity was classified as popular.
We found that @vtmn/svelte demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.