npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@studentsphere/ots-provider-wigor

v1.0.2

Published

Wigor Timetable implementation of a Open Timetable Scrapper Provider

Readme

Wigor Timetable implementation of an Open Timetable Scraper (OTS) provider

Wigor Service E-EDT

[!CAUTION] LEGAL DISCLAIMER AND LIMITATION OF LIABILITY

This project, @studentsphere/ots-provider-wigor, is an independent open-source tool. It is not affiliated with, authorized, maintained, sponsored, or endorsed by the Compétences & Développement (C&D) group, IGENSIA Education, or the developers of the WigorServices platform.

  1. Intellectual Property: All trademarks, logos, and brand names are the property of their respective owners. Their mention here is strictly for identification and compatibility purposes and does not imply any association.
  2. Responsible Use: This tool is provided for educational purposes and to facilitate interoperability. It is the end-user's sole responsibility to ensure that using this scraper complies with their institution's Terms of Service (ToS) and local laws regarding automated data access.
  3. No Warranty: The software is provided "as is", without warranty of any kind. The developer assumes no liability for account suspensions, access blocks, or any legal actions taken by the aforementioned groups resulting from the use of this tool.
  4. Service Changes: Since this tool relies on parsing third-party web pages, functionality may break at any time due to updates on the official WigorServices portals.

By using this package, you acknowledge and agree to these terms in full.

This provider specializes in extracting and retrieving data from Wigor-based school portals. It automates the connection and parsing of Wigor timetables, converting raw HTML into a clean, standardized format for the Open Timetable Scrapper ecosystem.

Installation

npm install @studentsphere/ots-provider-wigor

Features

  • Wigor System Support: Specifically designed to interface with Wigor-based timetable portals.
  • CAS Authentication: Automatically handles Central Authentication Service (CAS) login flows.
  • Multi-School Support: Built-in support for numerous schools and campuses using the Wigor system.
  • Standardized Output: Converts complex HTML timetable grids into clean, standardized Course objects defined by @studentsphere/ots-core.

Usage

To use the Wigor provider in your application, instantiate the WigorProvider class. You can then validate user credentials and fetch their schedule.

import { WigorProvider } from "@studentsphere/ots-provider-wigor";

const provider = new WigorProvider();

// 1. Validate credentials
const isValid = await provider.validateCredentials({
  identifier: "student_username",
  password: "student_password"
});

if (isValid) {
  // 2. Fetch the schedule for a specific date range
  const fromDate = new Date("2026-10-01T00:00:00Z");
  const toDate = new Date("2026-10-31T23:59:59Z");

  const courses = await provider.getSchedule(
    {
      identifier: "student_username",
      password: "student_password"
    },
    fromDate,
    toDate
  );

  console.log(courses);
}

Supported C&D and IGENSIA Education Schools

| Logo | Institution | | ---------------------------------------------------------------------------- | -------------------------- | | | 3A | | | EPSI | | | ESAIL | | | ICL | | | IDRAC Business School | | | IEFT | | | IET | | | IFAG | | | IGEFI | | | IHEDREA | | | ILERI | | | SUP' DE COM | | | VIVA MUNDI | | | WIS | | | American Business College | | | ESAM | | | ICD BUSINESS SCHOOL | | | IGENSIA RH | | | IMIS | | | IMSI | | | IPI | | | ISCPA | | | ISMM | | | CNVA | | | Business Science Institute | | | ECM | | | EMI | | | ESA |

Dependencies

This provider relies on several key packages to function:

  • axios & axios-cookiejar-support: For handling HTTP requests and maintaining session cookies.
  • cheerio: For parsing and extracting data from the Wigor HTML timetable grids.
  • tough-cookie: For robust cookie management during the authentication flow.
  • p-limit: For managing concurrency when fetching multiple weeks of schedule data.

License

MIT