Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/zenoo/twinoid-goals
- Owner: Zenoo
- Created: 2023-11-02T19:24:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-25T13:52:17.000Z (8 months ago)
- Last Synced: 2024-05-28T19:41:55.216Z (7 months ago)
- Language: TypeScript
- Size: 1.66 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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');
```