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

@ncsu-sat/common-ui

v0.1.12

Published

This package contains components, theme code, etc. that will be reused throughout our Next.js apps.

Downloads

97

Readme

@sat/common-ui

This package contains components, theme code, etc. that will be reused throughout our Next.js apps.

  • Note: Only tested with Next.js, React apps may not work out-of-the-box

Our department is building out web apps using Next.js zones. This allows apps to be built separately and they can be linked together with rewrite rules. Each app will have their own process, Dockerfile, repository, etc.

However, to keep from duplicating code in each of these repos, we'll use an npm package for code that is likely to be used in many of our web apps (e.g. Theme code, custom components, util functions)

How To Use Locally

If you want to link your Next.js app to this library locally (for development reasons) you need to npm link @sat/common-ui to your app. To do this, do the following:

$ git clone [email protected]:SAT/common-ui.git
$ cd common-ui
$ npm i
$ npm run build # build the bundle manually
$ # npm run dev # if you want bundle on file-changes
$ npm link # set up a link for @sat/common-ui

Then we need to npm link @sat/common-ui in the app:

~/nextjs-app/ $ npm link @sat/common-ui

If you run npm install in the host app directory or reboot your computer, the link will be lost. Until then, the link will live-update any changes automatically.

How To Publish Updates

...describe how to make changes for the npm package...

Example Usage

The only usage of common-ui at the moment is in liaison-ui-- one of many Next apps that will be connected to the clearance-ui for 2.0.

  • liaison-ui diff: https://github.ncsu.edu/SAT/liaison-ui/commit/e380ad1f50bbdb8b7562e072659c68bcb2b2ddbf

Technologies

  • Next.js - Used for the UI
  • styled-components - Used for styling custom components
  • evergreen-ui - Used as a foundation for our UI components
  • Rollupjs - Used in-place of Webpack. Webpack was hard to debug. Rollup simply takes the code in src/ and outputs it into dist/ in a way that's portable
    • Rollup uses plugins and presets to add functionality
      • rollup-plugin-peer-deps-external - Separates evergreen-ui, next, etc. from our library's bundle (a.k.a. making them externals)
      • @rollup/plugin-babel - Uses babel as a plugin, this handles React presets. See babel plugins below...
      • rollup-plugin-strip-prop-types - Removes prop-types from the bundle, VSCode can't read them after the build
      • @rollup/plugin-node-resolve - Helps load modules from node_modules
      • @rollup/plugin-terser - Minifies the bundle
  • babeljs - Compiles our code for compatibility with older browsers
    • Babel uses plugins and presets to add functionality
      • @babel/preset-env - Transpiles JS code, entirely preconfigured
      • @babel/preset-react - Transpiles React code, mostly preconfigured
      • @babel/plugin-external-helpers - Removes duplicate helper functions from the bundle
      • @babel/plugin-transform-runtime - Removes duplicate polyfills from the bundle
      • babel-plugin-styled-components - Correctly compile styled-components
  • typescript - Is being used to generate .d.ts files for type definitions only