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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@npmtestliffi/learnstorybook-design-system-template

v0.1.5

Published

1) Create reusable components based on [Figma design](https://www.figma.com/design/N0KxIxkd2feiy3IRG7XjfK/00.-Design-System-%5BExtracted%5D?node-id=311-4172&t=x5lUfUyISJABOWj4-0) - Inbox - Look into icons, typography and colors documentation/ theming - Ch

Downloads

254

Readme

Tasks for Storybook Demo

  1. Create reusable components based on Figma design

    • Inbox
      • Look into icons, typography and colors documentation/ theming
      • Change icon in main page of storybook app/ Styling for main app
    • To Do
      • Callout Banners
      • Modal
      • Snackbar
      • UI Shell and Navigation
    • In Progress
      • Table
    • Done
      • Button
      • TextField
      • Dropdown
      • Paper
      • Empty/Error State Messages
  2. Integrate qiankun MFEs with Storybook

    • To Do
      • Create MFEs with following libraries and versions
        • React - v16.14.0
        • Typescript - v4.6.3
        • @mui/material - v5.11.15
        • qiankun - v2.3.0
      • Import and test Storybook functionality
  3. Containerisation with Docker

  4. Version Management with Storybook e.g. how to manage different versions of reusable components being used in the frontend projects

  5. explore plugin to streamline Figma process

  6. Explore Testing solutions - playwright with storybook?

🚅 Quick start

  1. Install the dependencies.

    # Navigate to the directory
    cd learnstorybook-design-system/
    
    # Install the dependencies
    yarn
        
    # Start storybook in port 6006
    yarn storybook

🔎 What's inside?

A quick look at the top-level files and directories included with this template.

.
├── node_modules
├── src
├── .babelrc.json
├── .gitignore
├── .prettierignore
├── .prettierrc
├── LICENSE
├── package.json
├── rollup.config.mjs
├── vite.config.js
├── yarn.lock
└── README.md
  1. node_modules: This directory contains all of the modules of code that your project depends on (npm packages).

  2. src: This directory will contain all of the code related to what you will see on your application.

  3. .babelrc.json: This file tells babel which presets and plugins to use when transforming your code.

  4. .gitignore: This file tells git which files it should not track or maintain during the development process of your project.

  5. .prettierignore: This file tells prettier which files it should not format.

  6. .prettierrc: This file tells prettier which rules to use when formatting your code.

  7. LICENSE: The template is licensed under the MIT licence.

  8. package.json: Standard manifest file for Node.js projects, which typically includes project specific metadata (such as the project's name, the author among other information). It's based on this file that npm will know which packages are necessary to the project.

  9. rollup.config.mjs: This file tells rollup which plugins to use when bundling your code.

  10. yarn.lock: This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. (Do not change it manually).

  11. vite.config.js: This file tells Vite which plugins to use when bundling your code.

  12. README.md: A text file containing useful reference information about the project.

Learning Storybook