New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

nuuvem

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuuvem

git i

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

nuuvem

A price checker for nuuvem.com.br . Since nuuvem.com.br don't have a price API, this code will search for a game by it's name and return the matching results title, link and price information.

License Build Status

NPM

Installation

Using npm:

$ npm i --save nuuvem

Usage

const nuuvem = require('nuuvem');


nuuvem.checkPrice('game-name').then((gameDataArray)=>{
  
})

If you want to return just the first result for 'game-name':

const nuuvem = require('nuuvem');

nuuvem.checkPrice('game-name', true).then((gameDataArray)=>{
  
})

Each position of the result array with have an object containing the following attributes:

AttrTypeDescription
titleStringThe game title.
currencyStringThe currency string.
priceFloatThe game price.
linkStringThe link for the game in nuuvem.com.br

License

MIT © [Christiano Teixeira]

Keywords

nuuvem

FAQs

Package last updated on 12 Feb 2020

Did you know?

Socket

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