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

airview-ui

v2.4.0

Published

Airview UI is a collection of React UI components; these components can be composed to build an interface to render an application, which allows a user to navigate to specific Markdown documents.

Downloads

149

Readme

Airview UI

Airview UI is a collection of React UI components; these components can be composed to build an interface to render an application, which allows a user to navigate to specific Markdown documents.

Consuming the package

The package can be installed via npm, within your working directory run:

npm i airview-ui

Peer dependencies

The package has a peer dependency of Material UI, the components of this package are built on-top of this library.

Airview UI Theme Provider

To start using the airview-ui components, you must first wrap your application in an instance of <AirviewUiThemeProvider /> to provide required styling context.

The <AirviewUiThemeProvider /> component is an extension of the native Material UI theme provider; it accepts an optional themeConfig prop, which is an object as per the agument of the native Material UI createTheme() function.

Usage:

import { AirviewUiThemeProvider } from "airview-ui";

const config = {
  // ... your optional MUI config options
};

function App() {
  return (
    <AirviewUiThemeProvider themeConfig={config}>
      {/*child components */}
    </AirviewUiThemeProvider>
  );
}

Component API

Airview UI provides a base set of components that will allow you to compose an opinionated documentation viewer interface. An example of all components and the props API can be viewed via the StoryBook living documentation.

To view the StoryBook:

  1. Start by checking out main branch at https://github.com/AirWalk-Digital/airview
  2. Once cloned, cd into the root of the airview project directory and run npm install to install all package dependencies
  3. On successfull installation of project dependencies, cd into the airview-ui package and run npm run storybook. This will start Storybook and provide a local URL to access the StoryBook from within your chosen browser.

Note: A requirement for building StoryBook is node.js LTS, currently greater that version 16.15.1 but less than version 17.0.0.

Contributing to the package

Cloning the package for local development

Airview UI is part of a monorepo and therefore needs to be checked out from the root Airview repository. See the main README for instructions on how to do this here

Tooling

Global development tooling is available for the package, you can learn more about this here

Build scripts

npm scripts are available for development and production builds, these call Rollup to bundle our source. Note: these scripts are local and should be run from a terminal mounted at the root of the airview-ui directory.

Building for production:

To build / package the source for production, run the npm script below. This will output a bundle index.js to a dist directory within the airview-ui package root.

npm run build

Building for development:

For development, a build script is available that will bundle the source in watch mode; you can continue to work on the package source and the bundle will be automatically rebuilt each time a file within the dist directory is modified.

Note: the bundle within the dist directory SHOULD NOT be deployed to production.

To build for development run

npm run dev

Peer dependencies

All peer dependencies should be manually added to the peerDependencies key within the package.json file in the airview-ui root. Only dev dependencies should be added using the npm install command.

To optimise the bundle size, peer dependencies need to be flagged within rollup.config.js file, under the external array. This will prevent the peer dependency source from being bundled into the package source.

You can learn more about declaring external dependencies within a Rollup config here

Additional requrements for contributing

The current requirements around contributing are fairly loose; however we do enforce a few requirements. You can learn more about these requirements here.

Issues, bugs and feature requests

Information on issue tracking and feature requests can be found on the repo root README here