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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ilefa/bluetrade

v1.2.0

Published

Internal library for computing course transfer equivalencies

Downloads

4

Readme

Bluetrade

version badge

Bluetrade is a TypeScript library that allows you to easily fetch the course transfer equivalencies for any UConn course.

Installation

Use npm to install Bluetrade.

npm install @ilefa/bluetrade

Usage

import { getEquiv } from '@ilefa/bluetrade';

// Fetch all equivalent courses for MATH2710
let equiv = getEquiv("CSE1010");

[
    {
        "course": {
            "name": "CSE1010",
            "catalogName": "Introduction to Computing for Engineers",
            "catalogNumber": "1010",
            "prerequisites": "May not be taken out of sequence after passing CSE 1729 or 2050.",
            "attributes": {
                "lab": false,
                "writing": false,
                "quantitative": false,
                "environmental": false,
                "contentAreas": [],
                "graduate": false
            },
            "credits": 3,
            "grading": "Graded",
            "description": "Introduction to computing logic, algorithmic thinking, computing processes, a programming language and computing environment. Knowledge obtained in this course enables use of the computer as an instrument to solve computing problems. Representative problems from science, mathematics, and engineering will be solved."
        },
        "equivalent": [
            {
                "school": "Central Connecticut State Univ",
                "name": "CS152",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Eastern Connecticut St Univ",
                "name": "CSC180",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Endicott College",
                "name": "CSC160",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Monroe Cmty College",
                "name": "CPT101",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Southern Connecticut State University",
                "name": "CSC152",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Springfield Tech Cmty College",
                "name": "CSC100",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Three Rivers Community College",
                "name": "CSC*108",
                "title": "Introduction to Computing for Engineers"
            },
            {
                "school": "Univ Vermont",
                "name": "CS021",
                "title": "Introduction to Computing for Engineers"
            }
        ]
    }
]

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

GPL-3.0