Skip to content

ThemezerNX/eShop-Image-Fetcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This is a small library that fetches images for an application based on its title ID using Nintendo's GraphQL API at https://graph.nintendo.com/.

Example

import Fetcher from "@themezernx/eshop-image-fetcher";

const fetcher = new Fetcher("US");
const url = await fetcher.fetchAll("01000D1006CEC000");
console.log("All Images:", url);

Build

# install dependencies
yarn

# compile the script
yarn run build