courseavail-api
v1.1.1
Published
An API for SCUs CourseAvail application
Downloads
4
Readme
Unofficial SCU CourseAvail API
Install this using:
npm i courseavail-api
Example Usage
// main.js
import { Client } from 'courseavail-api'
/**
Note - does not work:
const { Client } = require('courseavail-api')
*/
const client = new Client()
client.search('math 12', 'Spring 2022')
.then(results => {
console.log(results[0].instructor)
})
See all the properties in the source.