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 🙏

© 2025 – Pkg Stats / Ryan Hefner

sandcastle-ui

v1.2.544

Published

UI Framework and Component Library

Readme

Sandcastle UI

Sandcastle UI is a React-based component library that can be consumed by applications and website as an NPM dependency .

Using Sandcastle UI

The sandcastle-ui NPM module exports clean, reusable React components.

To use the component library, follow these steps:

Install the NPM module

$ yarn add sandcastle-ui --save

Load the Sandcastle CSS file

<link rel="stylesheet" type="text/css" src="https://tr-sandcastle.s3.amazonaws.com/latest/sc.main.css" />

Usage example

import React from 'react';
import { Button } from 'sandcastle-ui';

class Example extends React.Component {
  render() {
    return (
      <Button />
    );
  }
}

Browse the component library

Sandcastle UI benefits from comprehensive, off-site documentation. Please visit the Sandcastle Design System website for a full inventory and each components respective documentation.

Developing for Sandcastle UI

Note: If you are only looking to use sandcastle-ui as a dependency in your project, please refer to Using Sandcastle UI

Development for Sandcastle components is presently overseen by the core Sandcastle team. If you feel like contributing to this project, please follow the steps below to create a local sandcastle environment.

Set up a local environment

git clone http://{username}@stash/scm/trav/sandcastle-ui.git
git submodule update --remote --init
yarn setup
yarn dev

For more information on how to use the Sandbox environment, please refer to its separate README file.

Using the Sandbox

To aid development of Sandcastle components, a very simple React environment has been provided. This environment can be used to import and test Sandcastle UI components from both the /src folder and the 'sandcastle-ui' NPM module.

The Sandbox environment uses a Webpack 4, Babel, React, GraphQL and Flow configuration. Developers are encouraged use this application to simulate real-world usage of the components prior to publishing new updates to NPM or making Pull Requests. This helps us to manually ascertain the integrity of each component before integrating them in other real world applications.

yarn dev