Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

argentina-86

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

argentina-86

argentina 86 players api

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Argentina 86

Argentina 86 players data app used as an introduction to Node

Getting started

  • Install node from https://nodejs.org/ (version 4.2.2 is ok)
  • Create a new folder and once in that folder run npm install argentina-86
  • Create a new file (called index.js for example) with this content:
var arg86 = require("argentina-86");

arg86.getPlayers()
  .then(function(data) {
    var names = data.map(function (p) { return p.name; });
    console.log(names);
  });
  • Run it into a terminal with node index.js
  • You can now start to study the entire squad

Keywords

FAQs

Package last updated on 19 Nov 2015

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc