1.0.4 • Published 3 years ago

node-lostlands-api v1.0.4

Weekly downloads
23
License
-
Repository
github
Last release
3 years ago

NodeJS Lost Lands API

NodeJS package for accessing the Lost Lands API. Currently implemented is API v1.

Getting Started

Installing

npm i node-lostlands-api

Including in your application

const lostlandsAPI = require("node-lostlands-api");
const v1 = new lostlandsAPI.v1();

API

Example Call

const uuid = "0713189b-ba9f-4b30-b772-d17e7bd402f9";
v1.player(uuid, function(err, player) {
    if (err) {
        console.error(err);
    } else {
        //player is an array of all documented player data
        console.log(player);
    }
});

Documentation

Documentation for all API calls can be found under the v1 documentation on the Lost Lands developer docs. https://developer.lostlands.co/

1.0.4

3 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago