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
13
increased by116.67%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

1.2.5 (2021-07-10)

Features

  • Add We are currently investigating issues some players are having logging into the North American megaservers. status (03a51b2)
  • Add The issues related to logging in to the North American megaservers have been resolved at this time. status (03a51b2)
  • Add Add linter (0df875d)
  • Add gitHub Action CI and CI/CD (161ab94)

Code Refactoring

Updates

Readme

Source

ESO-STATUS

npm license Downloads LGTM Grade Node version Build Status Build 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 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 ?

[
  eso_store: {
    raw_date: '2021.06.03 - 13:10 UTC (9:10 EDT)',
    raw_information: 'The ESO store and account system are currently available.',
    date: '2021-06-03T13:10:00.000Z',
    slug: 'eso_store',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  account_system: {
    raw_date: '2021.06.03 - 13:10 UTC (9:10 EDT)',
    raw_information: 'The ESO store and account system are currently available.',
    date: '2021-06-03T13:10:00.000Z',
    slug: 'account_system',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  xbox_na: {
    raw_date: '2021.06.02 - 15:45 UTC (11:45 EST)',
    raw_information: 'The North American Xbox megaserver is currently available.',
    date: '2021-06-02T15:45:00.000Z',
    slug: 'xbox_na',
    support: 'xbox',
    zone: 'na',
    status: 'up'
  },
  xbox_eu: {
    raw_date: '2021.06.02 - 15:45 UTC (11:45 EST)',
    raw_information: 'The European Xbox megaserver is currently available.',
    date: '2021-06-02T15:45:00.000Z',
    slug: 'xbox_eu',
    support: 'xbox',
    zone: 'eu',
    status: 'up'
  },
  pc_na: {
    raw_date: '2021.06.02 - 14:30 UTC (10:30 EDT)',
    raw_information: 'The North American PC/Mac megaserver is currently available.',
    date: '2021-06-02T14:30:00.000Z',
    slug: 'pc_na',
    support: 'pc',
    zone: 'na',
    status: 'up'
  },
  ps_na: {
    raw_date: '2021.06.02 - 9:45 UTC (5:45 EST)',
    raw_information: 'The North American PlayStation® megaserver is currently available.',
    date: '2021-06-02T09:45:00.000Z',
    slug: 'ps_na',
    support: 'ps',
    zone: 'na',
    status: 'up'
  },
  ps_eu: {
    raw_date: '2021.06.02 - 9:45 UTC (5:45 EST)',
    raw_information: 'The European PlayStation® megaserver is currently available.',
    date: '2021-06-02T09:45:00.000Z',
    slug: 'ps_eu',
    support: 'ps',
    zone: 'eu',
    status: 'up'
  },
  pc_eu: {
    raw_date: '2021.06.01 - 10:20 UTC (6:20 EDT)',
    raw_information: 'The European PC/Mac megaserver is currently available.',
    date: '2021-06-01T10:20:00.000Z',
    slug: 'pc_eu',
    support: 'pc',
    zone: 'eu',
    status: 'up'
  },
  pts: {
    raw_date: '2021.05.17 - 16:00 UTC (12:00 EDT)',
    raw_information: 'The PTS is currently available.',
    date: '2021-05-17T16:00:00.000Z',
    slug: 'pts',
    support: 'none',
    zone: 'none',
    status: 'up'
  },
  site_web: {
    raw_date: '2021.01.14 - 14:45 UTC (9:45 EST)',
    raw_information: 'The ESO Website is currently online.',
    date: '2021-01-14T14:45:00.000Z',
    slug: 'site_web',
    support: 'none',
    zone: 'none',
    status: 'up'
  }
]

FAQs

Last updated on 10 Jul 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