1. ui-predicate-core
Finally a predicate UI component for the Web
ui-predicate-core
Package: ui-predicate-core
Last modified: Sun, 22 May 2022 16:16:24 GMT
Version: 0.8.0
License: MIT
Downloads: 271

Install

npm install ui-predicate-core
yarn add ui-predicate-core

ui-predicate-core

Low-level ui-predicate API.

Installation

ui-predicate is available on npm repository.

using yarn:

 $ yarn add ui-predicate-core

using npm:

 $ npm install ui-predicate-core

You can also directly download sources or use bundles available on jsDelivr.

Usage

ES modules:

 import {PredicateCore} from 'ui-predicate-core'

PredicateCore({
  data: [/* */],
  config:{ /* ... */ }
}).then(api => {
  // use api here
  console.log(api);
}, error => {
  // UIPredicateCore will yield a rejected promise if something went wrong at initialization time
  console.error(error);
});

CommonJS:

 const {PredicateCore} = require('ui-predicate-core');

PredicateCore({
  data: [/* */],
  config:{ /* ... */ }
}).then(api => {
  // use api here
  console.log(api);
}, error => {
  // UIPredicateCore will yield a rejected promise if something went wrong at initialization time
  console.error(error);
});

Example

Learn more about what ui-predicate can do in the Getting started.

Feel free to try ui-predicate on runkit.

Documentation

API

The detailed generated API documentation is available here.

Looking for older versions API documentation? Links are available here.

Contributing

We want contributing to ui-predicate to be fun, enjoyable, and educational for anyone, and everyone.

Code of Conduct

In the interest of fostering an open and welcoming environment, we have adopted a Code of Conduct that we expect project participants to commit to. Please read the full text so that you can understand what behavior will and will not be tolerated.

Contributing guide

If you are interested in contributing to ui-predicate, please read our contributing guide to learn more about how to suggest bugfixes and improvements.

License

ui-predicate is MIT licensed.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code