Socket
Socket
Sign inDemoInstall

fortnite-shop-api

Package Overview
Dependencies
127
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fortnite-shop-api

[![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger)


Version published
Weekly downloads
4
increased by33.33%
Maintainers
1
Install size
8.39 MB
Created
Weekly downloads
 

Readme

Source

Fortnite Shop Api

Build Status

A simple module to get fortnite featured/daily shop.

Installation

Open your favorite Terminal and run these command.

First Step and Only Step:

$ npm i fortnite-shop-api

Example usage

var { getDailyShop, getFeaturedShop } =  require('fortnite-shop-api');

getDailyShop().then((response) => {
    console.log(response);
}).catch((err) => {
    console.error(err);
})

getFeaturedShop().then((response) => {
    console.log(response);
}).catch((err) => {
    console.error(err);
})

// Example response:

/*
[
    {
        imageURL: 'https://image.fnbr.co/emote/5fd94fce4fd78c5a919b7727/icon_256.png',
        itemName: 'Party Favor',
        price: 300,
        rarity: 'uncommon'
    }
    ...
]
*/

License

MIT

FAQs

Last updated on 24 Dec 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc