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

bodhi-ui

v1.0.4-regtest

Published

<h1 align="center"> Bodhi UI </h1> <p align="center"> ReactJS frontend that interacts with the Bodhi backend services </p>

Downloads

10

Readme

Get Started

Requirements

  • Node version greater than 8.6.0
  • Yarn or npm version greater than 6.0.0

Install

$ git clone https://github.com/bodhiproject/bodhi-ui.git
$ cd bodhi-ui
$ yarn
$ yarn upgrade    // this is important
$ npm install

Development Environment

To run the development server, run the corresponding run script and the API will point to the remote server with the correct port. After compilation, it will show success commands & automatically redirect to the browser. Any code changes will be observed and will hot reload.

// Mainnet chain
$ yarn start:mainnet

// Testnet chain
$ yarn start:testnet

// Regtest chain - very fast block mining, can also mine blocks with API call
$ yarn start:regtest

Production Build

To create an optimized production build of the app, you need to run a build command in you terminal at app root. Use the build command specific to the chain you want to point to. The build output files will be in /build.

// Mainnet chain
$ yarn build:mainnet

// Testnet chain
$ yarn build:testnet

// Regtest chain - very fast block mining, can also mine blocks with API call
$ yarn build:regtest

Standards

Javascript Standard

Airbnb Javascript Style Guide

Linting

$ npm run lint:fix    // get sweet link checking and fixing
$ npm run lint        // to see whats wrong

Localization

react-intl is used for localization.

Using FormattedMessage

  • Try to use FormattedMessage whenever possible.
  • id should match the id in the JSON file with all the strings.
  • Put the default text inside defaultMessage.
  • Dynamic variables can be declared in the values property.
<FormattedMessage
  id='app.greeting'
  description='Greeting to welcome the user to the app'
  defaultMessage='Hello, {name}!'
  values={{
    name: 'Eric'
  }}
/>

Using formatMessage

  • For use with inline strings like string templates.
  • Define messages at the top of the file using defineMessages.
const messages = defineMessages({
  greeting: {
    id: 'app.greeting',
    defaultMessage: 'Hello, {name}!',
  },
});

const localizedMessage = this.props.intl.formatMessage(messages.greeting, { { name: 'Eric' }});
// localizedMessage = 'Hello, Eric!'

Run Language Script

  1. Run npm run build:langs
  2. Update the newly translated strings in the corresponding language file. The language file is in ./src/languageProvider/locales.

LGPL-3.0 License