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

@cyberesli/component-template

v0.0.18

Published

## ☝️ What is a component-template?

Readme

UI-Component-Template

☝️ What is a component-template?

The [component-template] delivers a practical and structured process of how to deal with your components in your frontend.

⚠️ Alert:

  • Until now this component-template is only compatible with the technologies SvelteKit and Tailwind CSS.

  • It needs to follow the fix structure of the Methodology Atomic Design.

  • After installing component-template you can modify and personalize the interface and given functions specific for your project.

👍 Why use the component-template?

  • Maximaze the reuse of your established components and write less code

  • Shared language and process with components because of fixed rules of the categories for components

  • Provides a modern and manageable frontend to show the visual side of your components

  • Faster component tracking with the implemented search tool in the frontend

🔧 How to install the component-template?

Download the project component-template from the [npm Registry] > https://www.npmjs.com/package/@cyberesli/component-template.

First Step:

$ npm i @cyberesli/component-template

Second Step:

$ cd node_modules
$ cd @cyberesli
$ cd component-template
$ cd dist

Third Step:

$ npm update

Fourth Step:

$ npm run-script setup

Fifth Step:

go back to root 
$ npm run dev

Last Step:

open the component-template with [/template] after the domain in the browser e.g. localhost:5173/template

In the lib/component-template folder add further folders with the Atomic Design categories. This listed structure is shown below.

* lib
** component-template
*** atoms
*** molecules
*** organism
*** templates
*** pages

In the atoms and molecules folder you can find example components. You can delete them but follow there example and paste your own components into the fitting category of the Atomic Design Methodology.

Side Note:

  • If u want to show dynamic content or no content then use caption that will fill the component with the Name of the component.

📌 What to consider using the component-template?

  • Each component classified to Atomic Design lies in its own .svelte file.

  • Choose suitable Naming of your components, so you will always know where they stand for.

  • Reuse your components with the import statement

  • Pass props or use each iterations for the usage of dynamic data with your components


create-svelte project

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.