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

@aleworm/rimble-web3-components

v1.0.0

Published

React components for web3 that help developers build dApps faster with better user experiences

Downloads

5

Readme

Rimble Web3 Components

Rimble Web3 Components provides drop-in React components using Rimble-UI for common UX patterns in decentralized applications. This monorepo includes a utility library and independently versioned packages for each of these components.

Requirements

Node - OS-dependent install instructions

Yarn - OS-dependent install instructions

Quick Start with Storybook Preview

This repo utilizes Storybook for component visualization and testing.

// Clone the repo
git clone [email protected]:ConsenSys/rimble-web3-components.git

// Change into the repository root
cd rimble-web3-components

// Install all dependencies from repository root directory
yarn install

// Watch for changes to all packages and automatically rebuild all packages. Use this with the `start storybook` command to preview components during development.

yarn start

Open a second terminal window

// From a different terminal session, change directory to Storybook inside the root repository
cd storybook

// Install Storybook
yarn install

// Start Storybook
yarn storybook

You can now edit components that are in the /package directory and the changes will update in storybook.

Monorepo structure

├── node_modules
├── packages
│   ├── ConnectionBanner
│   │   ├── src
│   │   ├── test
│   │   ├── babel.config.js
│   │   ├── eslint.config.js
│   │   ├── jest.config.js
│   │   ├── prettier.config.js
│   │   ├── package.json
│   │   └── task -> ../../scripts/task
│   ├── NetworkIndicator
│   │   └── ... (same for all components)
│   ├── Utils
│   │   ├── src
│   │   ├── test
│   │   ├── babel.config.js
│   │   ├── eslint.config.js
│   │   ├── jest.config.js
│   │   ├── prettier.config.js
│   │   ├── package.json
│   │   └── task -> ../../scripts/task
│   └── ...
├── scripts
│   └── task
├── babel.config.js
├── eslint.config.js
├── jest.config.js
├── lerna.json
├── lint-staged.config.js
├── package.json
├── prettier.config.js
└── rollup.config.js

Monorepo organization

  • Yarn handles dependencies
    • Root package defines shared development tooling (lint, prettier, babel)
      • Default base config files for each tool exist in root
      • Config files are shared by all packages
    • Each package is for a releasable component or library
      • All packages share same structure and tooling
      • Config files for each tool are import defaults from root
      • Config files for any tool can be extended for individual package needs
      • Symlinks to a common task script that defines how tools are invoked by lerna
      • Each package is versioned independently via the lerna publish command
  • Rollup transpiles via babel releasable packages
  • Lerna handles multiple package tasks (test, lint, publish)

Prepary packages for Pull Request or publishing

Bootstrap packages with lerna

lerna bootstrap

Run linting on all packages

lerna run lint

Run tests on all packages

lerna run test

Compile libraries with Rollup

yarn build

Commit changes to libraries

git commit -am “commit message”

Version and publish updated packages to NPM

lerna publish

Peer dependencies

  • rimble-ui

    yarn add rimble-ui

  • styled-components

    yarn add styled-components

  • prop-types

    yarn add prop-types

Misc

To publish a new package to NPM you must first manually create the package via the command line.

npm publish --access public

Developing new locally

  1. Create new folder in the /packages directory
  2. Add required files and structure (generator coming soon)
  3. Code component
  4. Create new component folder in /storybook/src/stories
  5. Create new story for component
  6. Import component to new story using relative paths

Pull requests will automatically generate an atomic build that is hosted on Netlify. The link to the hosted version will be posted in the PR.

Using components locally in another repo

  1. Create link to local component in rimble-web3-components repository

    cd packages/ConnectionBanner
    yarn link
  2. Link to local component in rimble-app-demo repository

    yarn link @rimble/connection-banner
  3. Modify webpack to fix multiple issues of styled-components

If using create-react-app, follow these steps to resolve multiple instances of styled-component:

  1. Need to customize webpack, but don’t want to eject:

    • https://github.com/timarney/react-app-rewired/
    • https://github.com/aze3ma/react-app-rewire-aliases
  2. Add packages:

    yarn add -D react-app-rewired react-app-rewire-aliases

  3. Create new file in root directory:

    config-overrides.js

  4. Paste snippet in config-overrides.js:

    const rewireAliases = require('react-app-rewire-aliases');
    const { paths } = require('react-app-rewired');
    const path = require('path');
    
    /* config-overrides.js */
    module.exports = function override(config, env) {
      config = rewireAliases.aliasesOptions({
        'styled-components': path.resolve(
          `${paths.appSrc}/../node_modules/styled-components`,
        ),
      })(config, env);
      return config;
    };

Issues

Open an issue for any bugs or feature requests

Contributing

We are open source and welcome your contributions !

License

MIT © ConsenSys