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

sevago-sso-fe

v1.0.194

Published

Sevago SSO Frontend Library - A comprehensive SSO solution with React components

Readme

Sevago SSO Frontend Library

A comprehensive Single Sign-On (SSO) frontend library built with React, TypeScript, and Material-UI.

npm version License: MIT


Support

Features

  • 🎨 Material-UI components with custom styling and theming
  • 📱 Responsive design with mobile support
  • 🎯 Full TypeScript support
  • 🎭 Framer Motion animations
  • 📊 System monitoring components
  • 🔧 Utility functions and constants

Installation

npm install sevago-sso-fe

Peer Dependencies

npm install react@^19.2.0 react-dom@^19.2.0 @emotion/react@>=11 @emotion/styled@>=11 @mui/material@>=5 @mui/system@>=5 @reduxjs/toolkit@^2.9.2 react-redux@^9.2.0 react-router-dom@^7.9.5 redux-persist@^6.0.0

Quick Start

Basic Setup

import React from 'react';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import { BrowserRouter } from 'react-router-dom';
import App from 'sevago-sso-fe';

function RootApp() {
  return (
    <Provider store={store}>
      <PersistGate loading={null} persistor={persistor}>
        <BrowserRouter>
          <App />
        </BrowserRouter>
      </PersistGate>
    </Provider>
  );
}

export default RootApp;

Constants

Style Constants

import { STYLE, MODE, OPACITY } from 'sevago-sso-fe';

const customStyle = {
  padding: STYLE.PADDING_GAP_LAYOUT,
  borderRadius: STYLE.BORDER_RADIUS_ELEMENT,
  height: STYLE.HEIGHT_DEFAULT_TEXT_FIELD_BUTTON,
};

Theme Modes

import { MODE } from 'sevago-sso-fe';
import { createTheme } from '@mui/material/styles';

const theme = createTheme(MODE.light); // or MODE.dark or MODE.other

Opacity Constants

import { MODE, OPACITY } from 'sevago-sso-fe';

const semiTransparent = `${MODE.light.palette.primary.main}${OPACITY[50]}`;

Utilities

Time Utils

import { timeUtils } from 'sevago-sso-fe';

const timeAgo = timeUtils.getTimeAgo(new Date());
const dateTime = timeUtils.getDateTime(new Date());
const date = timeUtils.getDate(new Date());

String Utils

import { stringUtils } from 'sevago-sso-fe';

// Use string utility functions

App Utils

import { Environment, getCurrentEnvironment } from 'sevago-sso-fe';

// Get current environment based on hostname
const env = getCurrentEnvironment();
// Returns: Environment.DEVELOP | Environment.STAGING | Environment.PRODUCTION

// Environment enum values
const develop = Environment.DEVELOP; // "develop"
const staging = Environment.STAGING; // "staging"
const production = Environment.PRODUCTION; // "production"

Enums

import { AppCategory, Mode, OrderType, Environment } from 'sevago-sso-fe';

// Use enums
const category = AppCategory.ALL;
const mode = Mode.LIGHT;
const order = OrderType.ASC;
const env = Environment.DEVELOP;

API Reference

Components

| Component | Description | Props | | --------------------------------- | ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | App | Main application component with theme provider | None | | SystemMonitorScreen | System monitoring dashboard screen | env: Environment, blacklist?: string[] | | AppGrid | Application grid component with smart URL routing | apps: AppInfo[], env: Environment, columns?: number, rows?: number, iconSize?: number, iconRadius?: number, gap?: number \| string, showPagination?: boolean, titleVariant?, titleColor?, captionColor? | | AppsSidebar | Applications sidebar component | isOpen: boolean, onClose: () => void, env: Environment, position?: "left" \| "right", blacklist?: string[] | | SystemMonitorSidebarPart | System monitor sidebar part | - |

TypeScript Support

Full TypeScript support with comprehensive type definitions:

import type { AppInfo, AppGridProps, SystemMonitorScreenProps, AppsSidebarProps, Environment } from 'sevago-sso-fe';

// AppInfo interface
interface AppInfo {
  path: {
    develop: string;
    staging: string;
    production: string;
  };
  content: string;
  color: string;
  icon: string;
  group: AppGroup;
}

Development

Prerequisites

  • Node.js >= 16.x
  • npm >= 7.x

Getting Started

# Clone the repository
git clone https://github.com/dev1-gmail2025/sevago-sso-fe.git
cd sevago-sso-fe

# Install dependencies
npm install

# Run development server
npm run dev

# Build library
npm run build:lib

# Lint code
npm run lint

Made with ❤️ for the Sevago SSO ecosystem