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

bootflex

v1.0.55

Published

[![Build status](https://badge.buildkite.com/90ff98db996bb137c5be1bdce666c4b1ce68a25b17af0a6a04.svg?branch=master)](https://buildkite.com/harvey/react-component-library) [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensou

Downloads

113

Readme

bootflex

Build status License: MIT

What is it?

bootflex is a responsive user interface , forms and tables library for use with modern react applications.

Responsive User Interface & Layout

The user interface provides what is sometimes referred to as the Holygrail layout, with a header (usually containg a Navigation bar), footer (that is fixed to bottom of your viewport), side panels with fluid and responsive content containers that scroll between the header and the footer. Bootflex provides for full height scrolling content and side panels that stretch to your content or contrained layouts that scroll between the header and footer. This web-site is an example using bootflex. You are not required to have a header and footer, indeed Bootflex may simply be used standalone for its context wrapper or form control functionality. You can elect to utilise Bootflex's other extensions as required.

Form Control

With Bootflex you may define a schema for your form and then use Input components that require only a name prop. Each input component has responsive breaks that can be used without the need to wrap inside Col components. Your form layout code is greately reduced in size and complexity. CRUD Operations using nested row based data is made extremely simple. Great care has been taken to ensure that re-renders are kept to a bare minimum, making your application blazingly fast

Application Wide Context

When developing in React a constant challenge is making components interact or share data with related siblings, parents, children or unrelated components. This may be acheived with prop drilling, redux or with the context API. While the context API is great, it is often difficult or time consuming to setup reducers, dispatchers and providers. Issues often arise altering context changes within react effects or with excessive component re-rendering, especially when using a single context for both state and dispatch. Using the most recent recommendations from React guru Kent C Dodds, Bootflex splits contexts between the Bootflex application state, the dispatch logic and user state (provided for you to use). Immer is used internally for immutable state management and reducer functions. Bootflex provides a context wrapper for your entire application that allows ad-hoc context to be created which is easily shared between unrelated or distant component. Access to context is provided through a single useFlexContext() hook which exposes the triplet values of state, dispatch functions and internal Bootflex state.

Data Tables and CRUD

Bootflex extends the fabulous react-data-table-component library extending it to provide context pagination and form entry / modification for CRUD (create/read/update/delete) operations. Pagination is supported in thre context of the user interface allowing pagination controls to be placed in the header or footer of your application.

Card Controls

Bootflex has cascading style cards that are designed to interractly perfectly within the user interface layout.

Improved React-Select

Bootflex provides an extension to the popular react-select component, providing the missing required option, with bootsrap styled feedback

Get Started

Explore the Bootflex Homepage at https://intelliflex.github.io/bootflex to see documentation and usage examples.

To download and start using in your own application

yarn add bootflex

or

npm install bootflex