Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Latest commit

Β 

History

History
28 lines (21 loc) Β· 1.23 KB

README.md

File metadata and controls

28 lines (21 loc) Β· 1.23 KB

traveller

🌱 Simple Deno module to fetch top islands from turnip.exchange

License Build Deno Version Deno STD Version

πŸ”¨ Usage

import { TurnipExchange } from 'https://raw.githubusercontent.com/nurodev/traveller/master/mod.ts';

const turnips = new TurnipExchange();

const result = await turnips.get(3);

console.log(result);

πŸš€ Example

deno run --allow-net https://raw.githubusercontent.com/nurodev/traveller/master/examples/get.ts

βœ… Tests

deno run --allow-net https://raw.githubusercontent.com/nurodev/traveller/master/test.ts