ns-eshop-sale
is a package written in Node.js that fetches Nintendo Switch's eShop Games on Sale.
npm install ns-eshop-sale
import { getSaleGames } from 'ns-eshop-sale';
(async () => {
console.log(
await getSaleGames({ country: 'KR', language: 'ko', count: 3, offset: 0 })
);
})();
country?: string;
language?: string;
count?: number;
offset?: number;
contents: Content[];
length: number;
offset: number;
total: number;