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

eskolare-ui-dashboard

v0.1.20

Published

Interface package from Eskolare admin applications.

Downloads

30

Readme

Eskolare UI-Dashboard

Eskolare User Interface Package

This package was created to be used with Eskolare applications in order to mantain standards regarding user interface.

It uses the concept of Atomic Design principles to our library structure.

  • Atoms -> Elements: Atoms are basically the smallest indivisible bits of UI. Think of buttons, links, inputs, etc.
  • Molecules -> Components: As I alluded to above, molecules are simple and distinct combinations of atoms. Going forward we’ll call these, you guessed it, “components”. The word “component” is very natural for the React world, but we’ll be using it in a specific way. An example would be a search field, which is a combination of a label, an input, and a button. Another example would be a dropdown list, which consists of a button (to toggle the dropdown) a list, and list items.
  • Organisms -> Containers: Organisms are groups of molecules joined together to form a relatively complex, distinct section of an interface. Organisms can consist of similar and/or different molecule types. For example, a masthead organism might consist of diverse components like a logo, primary navigation, search form, and list of social media channels.
  • Templates: Templates consist mostly of groups of organisms stitched together to form pages. It’s here where we start to see the design coming together and start seeing things like layout in action.

How to Develop With It

Follow the steps to have this package available during your development in other projects:

  1. Clone this package to your development folder git clone https://github.com/eskolare/eskolare-ui-dashboard.git.
  2. Enter into the package folder after clonned and run npm install and after npm link.
  3. Clone your development project, for example, the landing page using git clone https://github.com/eskolare/landing-frontend.git.
  4. Enter into the project development folder after clonned and run npm install and after npm link eskolare-ui-dashboard.
  5. Well done! Your development project is now linked to your local library and ready for development. You only have to use import [Something] from 'eskolare-ui-dashboard' to use in your code.
  6. Remeber to use in your local package folder the command npm run build:watch to recompile after changes when working with components, and use npm run sass:watch in a different terminal to watch changes into .scss files. You can also split your terminal and run npm run eslint:watch to know if we have any syntax errors right away.

How to Publish

After a new version is ready, commited at GitHub, it is time to publish to npm and make the package available to npm install eskolare-ui-dashboard in your project development.

  1. Use the command npm version patch to update your version
  2. Publish using npm publish

Remember that the user that is publishing need to have permission to do it.