Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zenoo/twinoid-goals

Twinoid goals, as a package
https://github.com/zenoo/twinoid-goals

Last synced: about 1 month ago
JSON representation

Twinoid goals, as a package

Awesome Lists containing this project

README

        

# Twinoid Goals

A simple, straight-forward package containing everything you need to handle Twinoid goals.

![](https://i.imgur.com/gL6Od52.png)

## Installation
```
npm i twinoid-goals
```

## Usage

```ts
import { alphabounce } from 'twinoid-goals';

const unlockedGoals = alphabounce.getUnlocked('planets', 6);
```

## More examples

### Get all goals for a specific game

```ts
import { alphabounce } from 'twinoid-goals';

const { goals } = alphabounce;
```

### Get all unlockable goals for an ID

```ts
import { alphabounce } from 'twinoid-goals';

const planets = alphabounce.get('planets');
```