Socket
Socket
Sign inDemoInstall

@dov118/eso-status

Package Overview
Dependencies
2
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dov118/eso-status

Library used to get servers status of The elders scrolls Online game


Version published
Weekly downloads
6
decreased by-50%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

1.1.12 (2021-05-05)

Updates

  • Update ts-jest from 26.5.5 to 26.5.6

Code Refactoring

  • Remove unused comments

Readme

Source

ESO-STATUS

Eso-status is a library for getting and formatting data can founded in https://help.elderscrollsonline.com/app/answers/detail/a_id/4320

Table of Contents

How to get it ?

NPM

npm version Downloads Dependency Status devDependency Status Language grade: JavaScript

npm i @dov118/eso-status

How to use it ?

  • TypeScript
import {EsoServer, EsoStatus} from "@dov118/eso-status";

EsoStatus.getEsoStatus().then((data: EsoServer[]): void => {

}).catch((error: Error): void => {

});
  • JavaScript
const {EsoStatus} = require("@dov118/eso-status");

EsoStatus.getEsoStatus().then(function (data) {

}).catch(function (error) {

});

Returned data format ?

[
  pts: {
    raw_date: '2020.12.16 - 15:45 UTC (10:45 EST)',
    raw_information: 'The PTS is currently available.',
    date: '2020-12-16T15:45:00.000Z',
    slug: 'pts',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  ps4_na: {
    raw_date: '2020.12.09 - 13:30 UTC (8:30 EST)',
    raw_information: 'The North American PlayStation®4 megaserver is currently available.',
    date: '2020-12-09T13:30:00.000Z',
    slug: 'ps4_na',
    support: 'ps4',
    zone: 'na',
    status: 'up'
  },
  ps4_eu: {
    raw_date: '2020.12.09 - 13:30 UTC (8:30 EST)',
    raw_information: 'The European PlayStation®4 megaserver is currently available.',
    date: '2020-12-09T13:30:00.000Z',
    slug: 'ps4_eu',
    support: 'ps4',
    zone: 'eu',
    status: 'up'
  },
  site_web: {
    raw_date: '2020.12.08 - 14:40 UTC (9:40 EST)',
    raw_information: 'The ESO Website is currently online.',
    date: '2020-12-08T14:40:00.000Z',
    slug: 'site_web',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  pc_na: {
    raw_date: '2020.12.7 - 12:35 UTC (7:35 EDT)',
    raw_information: 'The North American PC/Mac megaserver is currently available.',
    date: '2020-12-07T12:35:00.000Z',
    slug: 'pc_na',
    support: 'pc',
    zone: 'na',
    status: 'up'
  },
  pc_eu: {
    raw_date: '2020.12.7 - 12:35 UTC (7:35 EDT)',
    raw_information: 'The European PC/Mac megaserver is currently available.',
    date: '2020-12-07T12:35:00.000Z',
    slug: 'pc_eu',
    support: 'pc',
    zone: 'eu',
    status: 'up'
  },
  xbox_na: {
    raw_date: '2020.12.05 - 08:15 UTC (03:15 EST)',
    raw_information: 'The North American Xbox One megaserver is currently available.',
    date: '2020-12-05T08:15:00.000Z',
    slug: 'xbox_na',
    support: 'xbox',
    zone: 'na',
    status: 'up'
  },
  xbox_eu: {
    raw_date: '2020.12.05 - 08:15 UTC (03:15 EST)',
    raw_information: 'The European Xbox One megaserver is currently available.',
    date: '2020-12-05T08:15:00.000Z',
    slug: 'xbox_eu',
    support: 'xbox',
    zone: 'eu',
    status: 'up'
  },
  eso_store: {
    raw_date: '2020.12.03 - 19:05 UTC (14:05 EST)',
    raw_information: 'The issues affecting purchases in the ESO store have been resolved.',
    date: '2020-12-03T19:05:00.000Z',
    slug: 'eso_store',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  account_system: {
    raw_date: '2020.11.18 - 16:40 UTC (11:40 EST)',
    raw_information: 'The ESO store and account system are currently available.',
    date: '2020-11-18T16:40:00.000Z',
    slug: 'account_system',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  crown_store: {
    raw_date: '2020.11.03 - 18:30 UTC (13:30 EST)',
    raw_information: 'The Crown Store is currently available.',
    date: '2020-11-03T18:30:00.000Z',
    slug: 'crown_store',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  web_forum: {
    raw_date: '2020.07.17 - 22:15 UTC (18:15 EDT)',
    raw_information: 'The ESO Forums are currently available.',
    date: '2020-07-17T22:15:00.000Z',
    slug: 'web_forum',
    support: 'none',
    zone: 'none',
    status: 'up'
  }
]

FAQs

Last updated on 05 May 2021

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