2.0.2 • Published 3 years ago

@mtucourses/scrapper v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@mtucourses/scrapper

codecov

Scrapes various types of information from Michigan Tech, including faculty members and offered courses.

🏗 Usage

const {getAllSections} = require('@mtucourses/scrapper');

(async () => {
  const fallTerm = new Date();
  fallTerm.setFullYear(2020, 7);

  const sections = await getAllSections(fallTerm);

  console.log(sections);
})();

See the documentation for details.

🧰 Development

# First:
# install dependencies
yarn install

# then:
# build in watch mode
yarn build:watch

# and you can:

# run tests
yarn test

# run tests in watch mode
yarn test:watch

To publish a new package version, run npm version [patch|minor|major] and then git push && git push --tags on the master branch.

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago