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 🙏

© 2025 – Pkg Stats / Ryan Hefner

vseth-canine-ui

v1.1.2

Published

`"canine - creating a name is never easy"`

Downloads

298

Readme

vseth-canine-ui

"canine - creating a name is never easy"

The core idea of vseth-canine-ui is to provide React-beginners with an easy way to start developing web-applications for the VSETH while also keeping a consistent branding throughout all VSETH projects.

Core ideas

To reduce future maintenance cost and providing as much flexibility as possible, we want to follow the following few rules:

  • Don't reinvent the wheel! (Use mantine wherever possible)
  • Don't recreate mantine components just to re-export them unchanged.
  • Don't force a specific solution/framework for things like routing or auth. Make them optional or replaceable if possible.
  • Significant UI/UX changes should be discussed with the VSETH board (Kommunikation)

Updating the Doc

If you make changes to a current component, add a new component, or simply want to improve the current docs, look in the doc folder.

To add a new page, simply duplicate and rename an existing file. If you want to document a single component, using a .stories.tsx file is recommended, for text/wiki-pages, .stories.mdx is easier.

The order the pages appear in the docs is defined in .storybook/preview.js.

Run the storybook build on Teamcity to publish the docs.

Publishing a new version

(TEAMCITY PUBLISH WORKFLOW NOT YET SET UP)

  • Bump the version number in the package.json
  • Push the changes to GitLab
  • Run the publish step on Teamcity.

TODO: Alternative publish steps

Testing it locally

If you want to test changes to vseth-canine-ui locally without publishing a new version (for example with one of the demo projects), remove the vseth-canine-ui dependency from the demo, and run npm link in the vseth-canine directory. Then run npm link vseth-canine-ui in the demo directory. Then run npm link ../demo-folder/node_modules/react in the vseth-canine directory.

If you just want to demo a single component locally, you can also simply use storybook by runniong the command npm run storybook.