npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

scb-designsystemtest

v0.3.26

Published

> ⚠️ **Testpaket** > Testkomponenter under utveckling – kan ändras eller tas bort.

Readme

Om SCB Designsystemtest

⚠️ Testpaket
Testkomponenter under utveckling – kan ändras eller tas bort.

SCB Designsystemtest finns för att underlätta skapandet av enhetliga, tillgängliga och användbara webbapplikationer. Komponenterna är under utveckling och kan ändras eller tas bort mellan versioner.


Kom igång

Obs: Kör alla kommandon i mappen där din package.json ligger. Har du ingen? Kör npm init -y i projektroten (eller annan lämplig mapp).

Installera paketet:

npm install scb-designsystemtest

Alternativ 1: Använd som ES-moduler (i exempelvis React)

Importera enskilda komponenter (bäst för tree‑shaking):

import 'scb-designsystemtest/scb-designsystemtest.css';
import 'scb-designsystemtest/scb-button';
import 'scb-designsystemtest/scb-accordion';

Importera allt (ej rekommenderat, men möjligt):

import 'scb-designsystemtest/scb-designsystemtest.css';
import 'scb-designsystemtest/all';

Alternativ 2: Använd i MVC/MPA via <script type="module">

Det här läget använder den färdig‑splittrade MVC‑ESM‑builden som följer med paketet under node_modules/scb-designsystemtest/mvc/.

Rekommenderat: ett npm‑script

Lägg till i din apps package.json:

{
  "scripts": {
    "ui:install": "node -e \"const fs=require('fs'),p=require('path');const base=(process.env.npm_config_ui_wwwroot)||'wwwroot';const src=p.resolve('node_modules/scb-designsystemtest/mvc');const dst=p.resolve(base,'ui');if(!fs.existsSync(src)){console.error('Hittar inte '+src+'. Har du kört npm install scb-designsystemtest?');process.exit(1);}fs.rmSync(dst,{recursive:true,force:true});fs.mkdirSync(base,{recursive:true});fs.cpSync(src,dst,{recursive:true});console.log('Kopierade '+src+' → '+dst);\""
  }
}

Kör sedan:

npm run ui:install

Det kopierar hela mvc/ till wwwroot/ui/ (komponenter, vendor och CSS).

Vanliga lägen (var ligger din package.json?)

A) Standard MVC-projekt
package.json ligger i projektroten (vid sidan av .csproj).
Kör bara:

npm run ui:install

Resultat: filer kopieras till ./wwwroot/ui/.

B) Frontend i ClientApp/
package.json ligger i ClientApp/ och webbroten är ../wwwroot.
Kör med flagga:

npm run ui:install --ui_wwwroot=../wwwroot

Resultat: filer kopieras till ../wwwroot/ui/.

Ladda filer i din layout

<!-- Lägg helst i <head> -->
<link rel="stylesheet" href="~/ui/scb-designsystemtest.css" />

<!-- Ladda ENDAST de komponenter du använder på sidan, gärna precis före </body> -->
<script type="module" src="~/ui/components/scb-link/scb-link.js"></script>
<script type="module" src="~/ui/components/scb-button/scb-button.js"></script>

<!-- För demosida: ladda alla -->
<!-- <script type="module" src="~/ui/components/all.js"></script> -->

2.1) CI/CD (exempel)

Kör samma script i din pipeline:

steps:
  - script: npm ci
  - script: npm run ui:install

Behöver du annan webbrotsökväg i pipelinen? Lägg till flaggan:

- script: npm run ui:install --ui_wwwroot=../wwwroot

Alternativ 3: Använd bundlad version (IIFE)

Om ESM inte stöds, använd den bundlade varianten från paketroten. Det vill säga, flytta följande två filer från node_modules/scb-designsystemtest och använd dem i applikationen:

node_modules/scb-designsystemtest/scb-designsystemtest.bundle.js
node_modules/scb-designsystemtest/scb-designsystemtest.css
<link rel="stylesheet" href="scb-designsystemtest.css">
<script src="scb-designsystemtest.bundle.js"></script>

Viktigt

  • Stå i mappen med din package.json när du kör npm install och kopieringskommandon.
  • Placeringen av package.json styr defaultmål: roten -> wwwroot/ui, ClientApp/ -> använd --ui_wwwroot=../wwwroot.
  • Blanda inte MVC‑ESM och IIFE på samma sida.
  • scb-designsystemtest är ett testpaket – komponenter kan ändras eller tas bort mellan versioner.