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

easyferrumjs

v0.9.2

Published

Get easy information about the application web ferrum.

Readme

Easy Ferrum JS

Ferrum es una aplicación web de la universidad tecnológico comfenalco la cual cuenta con un seguimiento de tareas y información del estudiante en su ciclo académico, el objetivo de esta aplicación es crear una librería que mediante web scrapping logre tomar esta información y aplicarla en distintas aplicaciones como puede ser el uso automático.

Tu apoyo ayuda a que otros usuarios también descubran y se beneficien de este proyecto. Además, nos motiva a seguir mejorando y añadiendo nuevas funcionalidades.

Uso

import { LoginData } from "./types/LoginData"
import { FerrumUser } from "./models/User"
import { configDotenv } from "dotenv"
configDotenv()

const newUser: LoginData = {
    user: process.env.FERRUM_USER,
    password: process.env.FERRUM_PASS
}

async function fetchUserInfo() {
    try {
        // Inicializamos
        const ferrumUser = new FerrumUser(newUser);
        await ferrumUser.InitPage();

        // Obtenemos información de Usuario.
        console.log(ferrumUser.userInfo)

        // Obtenemos las tareas parametrizadas a nuestras necesidades.
        console.log("Tareas")
        const allTasksPending = await ferrumUser.getHomeworks("Pending")
        const allTasksSend = await ferrumUser.getHomeworks("Send")
        const allTasks = await ferrumUser.getHomeworks("All")
        console.log(allTasks)

        // Obtenemos el estado de alguna tarea.
        const task = await ferrumUser.getHomeworkInfo("1370701")
        console.log(task)
    } catch (error) {
        console.error("Error in FerrumJS", error);
    }
}

fetchUserInfo()

Información Detallada.

| Funcionalidad | Tipo | Descripción. | |-|-|-| | FerrumUser | Clase | Clase principal la cual se crea a partir de un diccionario con un usuario y contraseña. | | InitPage | Método | Inicializar el usuario dentro de la plataforma. | | studentCode | Atributo | Código de estudiante de la plataforma ferrum. | | userInfo | Método | Obtener toda la información relevante sobre tu usuario en la plataforma. | | getHomeworks | Método | Obtener todas las tareas parametrizadas disponibles dentro de la plataforma ferrum. | | getHomeworkInfo | Método | Obtener información de una tarea en especifico. | | closeSession | Método | Cerrar la sesión del usuario. |