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

@uob-web-and-digital/component-library

v0.0.78

Published

A component library using React and Storybook.

Downloads

841

Readme

University of Birmingham Component Library

This is the frontend component library for the University of Birmingham website built using Storybook 7 and SASS.

Contents

Installation and setup

Compatibility

  • Node: ^18.18.0
  • React: ^17.0.2

Setting up the project locally

  1. Clone the repo from Github: git clone [email protected]:uob-itservices/component-library.git
  2. Install NPM Node Modules by running npm install from the project root

Working locally on the project

Run npm run storybook from the project root. This will run a new instance of Storybook that can be accessed from localhost:6006.

Changes made locally are automatically compiled and the browser instance of Storybook will automaticaly refresh, hot-loading changes very quickly where possible.

Creating components

Components should always be created within the src/components folder.

Naming component folders

You can create a new folder within src/components that is based on the chosen name for your component. The format of this folder name, react component and story should always be PascalCase i.e. MyNewComponent. SASS files should always be camelCase i.e. myNewComponent

Component file structure

Within the component folder you must create the following 3 files:

ComponentName
 |_ {ComponentName}.tsx
 |_ {ComponentName}.stories.ts
 |_ {componentName}.scss

{ComponentName}.tsx

This file is where the Component Structure is defined.

{ComponentName}.stories.ts

This file allows developers to pass in mockup content to the component that will render within Storybook. More information is available in the Storybook docs Storybook JS - Defining Stories

{componentName}.scss

This is where component styling is defined using SASS/CSS.

Deploying project changes to the public Storybook

The visible Storybook for sharing changes is private and is accessed at https://stunning-invention-1w42em5.pages.github.io/ you will need to be a member of the uob-itservices GitHub organisation and have access to the repository.

This is automatically deployed and built when changes are pushed to the develop branch of the GitHub repository.

Linting Before Committing

Before pushing a new commit to this component-library, please ensure that you run the following ES Lint command in your terminal:

npm run lint

This will highlight any linting issues that may arise when making file changes that will need to be fixed.

To adhere to the commit message best practice commitlint is used. More information on commit message linting can be found here at https://github.com/conventional-changelog/commitlint/#what-is-commitlint

Publishing changes to the NPMJS package library

The repository will need publishing to the NPMJS package library https://www.npmjs.com/package/@uob-web-and-digital/component-library before it can be used in the UoB website.

This is a private package so a read-only NPM access token will need be created in order to install the package.

When the library in ready for a new release of the NPM package, you will need to increase the version number in the package.json and run a npm install to ensure the project gets updated with this version. After this you will need to create a pull request into the develop branch and then another pull request from the develop branch into main

As this is a manual process, ensure that the main branch of the repository is always in sync with the currently published package.

Releasing to the NPM registry are managed by GitHub Actions. You will need to create a new release and use the new release version as the tag. Once the release is published a GitHub Action will automatically run all the steps to publish the package on NPM.

Using the component package library

In order to use the package you must have a NPM Access Token with read-only access to @uob-web-and-digital/component-library.

To install the package run npm install @uob-web-and-digital/component-library.

After installation you will need to add the following to your layout file;

import '@uob-web-and-digital/component-library/dist/main.css';

Base64 fonts

Fonts are base64 encoded so they are not hosted on a third party.

To encode fonts to base64 you can run;

base64 -i Font.woff2 -o Font64txt