A TypeScript library for interacting with Gradescope. (Inspired by https://github.com/nyuoss/gradescope-api)
-
Install Dependencies:
npm install # or if using pnpm: # pnpm install # or if using yarn: # yarn install
-
Environment Variables: Create a
.env
file in the root of the project directory. This file is used to store your Gradescope credentials securely. Copy the following format and replace the placeholder values with your actual credentials:GRADESCOPE_EMAIL=your_email@example.com GRADESCOPE_PASSWORD=your_password
Important: Add
.env
to your.gitignore
file to prevent accidentally committing your credentials.
(Add instructions on how to use the library here)
The src/example.ts
file demonstrates basic usage:
npm start