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
- Host: GitHub
- URL: https://github.com/kanocomputing/web-common
- Owner: KanoComputing
- Created: 2018-08-15T13:30:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T17:59:43.000Z (almost 3 years ago)
- Last Synced: 2025-02-13T17:18:55.501Z (over 1 year ago)
- Language: JavaScript
- Size: 251 KB
- Stars: 0
- Watchers: 21
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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)