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

https://github.com/onesy-me/meta

Meta
https://github.com/onesy-me/meta

amaui back-end backend browser front-end frontend javascript js meta node nodejs reflect reflect-metadata typescript web

Last synced: 3 months ago
JSON representation

Meta

Awesome Lists containing this project

README

          



onesy logo

onesy Meta


MIT license    
Production ready    
UMD 1.9kb gzipped    
100% test cov    
Browser and Nodejs


Very simple code    
Modern code    
Junior friendly    
Typescript    
Made with :yellow_heart:


### Add

```sh
yarn add @onesy/meta
```

### Use

```javascript
import OnesyMeta from '@onesy/meta';

const object = {};

OnesyMeta.add('a', 'a', object);
OnesyMeta.add('a', 'a4', object, 'p');

OnesyMeta.get('a', object);
OnesyMeta.get('a', object, 'p');

// Output
// 'a'
// 'a4'
```

### Dev

Install

```sh
yarn
```

Test

```sh
yarn test
```

### Prod

Build

```sh
yarn build
```