An open API service indexing awesome lists of open source software.

https://github.com/kanocomputing/web-common

Provides a set of libraries to implement common design patterns
https://github.com/kanocomputing/web-common

Last synced: 10 months ago
JSON representation

Provides a set of libraries to implement common design patterns

Awesome Lists containing this project

README

          

# Kano Common libraries

Set of libarries to implement common Development Patterns and Principles.

Each library lives in its own subdirectory.

## Installation

```sh
yarn @kano/common
# OR
npm install --save @kano/common
```

## Usage

```js
// Import everything
import * as common from '@kano/common/index.js';
// Import only some symbols
import { EventEmitter, subscribe } from '@kano/common/index.js';

```

## [Events](./events)
## [Lifecycle](./lifecycle)
## [Time](./time)
## [Cancellation](./cancellation)
## [uController](./uc)