0.1.1 • Published 8 years ago

argentina-86 v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

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
0.1.1

8 years ago

0.1.0

8 years ago

0.0.1

8 years ago