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

musefind-core-frontend

v3.6.11

Published

Core library of MuseFind React components.

Readme

MuseFind Core FrontEnd Library

Installing/ Updating

To install on front-end platforms:

npm install --save musefind-core-frontend

To add to this library:

  • Create a folder for the component in the src/ directory
  • Supply an index.js in that folder (see HamburgerMenu for example)
  • Export that component in src/index.js
  • Update the version number in musefind-core-frontend/package.json
  • npm run build
  • cd build/
  • npm publish

Note: always update the package.json in the root directory, not the one in build/, which will be copied from the main one at build time.

Then, in the application:

  • npm update musefind-core-frontend

Warning: please ensure that SASS files within this core library import the variables.scss from the Styles folder, if needed.

Using Components/Styles

The library supports two different methods of importing:

import {HamburgerMenu} from 'musefind-core-frontend'

import HamburgerMenu from 'musefind-core-frontend/HamburgerMenu'

To import inside a SASS file, use the following: @import 'node_modules/musefind-core-frontend/Styles/variables';

Distribute

To use the distribute script, all your front-end applications must be in the same folder as musefind-core-frontend, named like so:

  • brand
  • influencer-ui
  • admin
  • musers

You run the distribute script for a specific platform (npm run distribute:influencer) or distribute to all three at once (npm run distribute).

Doing so will copy the transpiled code directly into the node_modules/musefind-core-frontend of the given platform. Note that it does not change the version in that platform's package.json. Be careful that when you push to production, what will be installed via npm install matches what you have locally.

Releasing

If you are releasing from dev, increment the version number in ./package.json to {NEXT_VERSION}-beta.0. Then, as you release new versions, increment the number after beta. Then run npm run release from the root. You can then install it on the front-end platform via yarn add musefind-core-frontend@{NEXT_VERSION}. It will prompt you to select the beta version.

If you are releasing from master, increment the version number in ./package.json to {NEXT_VERSION}. Then run npm run release from the root.

Documenting Components

To document a React component, you need to do five things:

  • Add a description to the component above the class or function declaration, exactly like so: `/*
  • Description: Like , animates the display of its content. Not good for images, but good for everything else. */ @observer export default class AnimatedExpander extends Component {`
  • Add descriptions to the prop-types, exactly like so: static propTypes = { // Whether it is displayed open: bool.isRequired, // What the message says message: string.isRequired, // How long in ms before it disappears autoHideDuration: number }
  • Add an example file to src/examples to show how to use it. Name this file YourComponentName.example.js. You can import the component from 'musefind-core-frontend', NOT from dist/. See the other example files.
  • Add the example to App.js using the ComponentDisplay component.
  • Run yarn start to generate raw versions of your component and example file, and to check the example is working.