schoollife
v1.0.4
Published
Package to make you remember your school life
Downloads
8
Readme
Schoollife
Schoollife is an npm package that provides a collection of functions related to school life. It includes utilities for printing welcome messages, homework reminders, lunch specials, course registrations, exam reminders, project deadlines, club meetings, party reminders, and nostalgic quotes.
Installation
To install the schoollife
package, run the following command:
npm install schoollife
Usage
To use the schoollife package in your project, follow these steps:
- Import the functions you want to use from the package:
const schoolUtils = require('schoollife');
- Call the desired functions:
schoolUtils.welcomeToSchool(); // Output: Welcome to school! schoolUtils.homework('Math', 'algebra problems'); // Output: Don't forget to do your algebra problems for Math class! schoolUtils.lunchTime('Pizza'); // Output: Time for lunch! Today's special is Pizza. schoolUtils.nostalgia(); // Output: (random nostalgic quote related to school life)
Avoiding ES6 Module Errors
If you encounter an error related to ES6 modules when using the schoollife package, follow these steps to resolve the issue:
- In your project directory, create a package.json file if it doesn't already exist:
npm init -y
- Open the
package.json
file and add the following line:
{
"type": "module"
}
Rename your entry file (e.g., index.js) to index.mjs (or any other extension that Node.js recognizes as an ES6 module, like .js with "type": "module" in package.json).
Import the schoollife package using the ES6 module syntax:
import * as schoolUtils from 'schoollife';
Run your script using the node command with the
--loader=module flag
:node --loader=module index.mjs
Test File
import fetch from 'node-fetch'; import * as schoolUtils from './index.js'; schoolUtils.registration(['Computer Science', 'Calculus', 'English Lit']); // Output: You have registered for the following courses: Computer Science, Calculus, English Lit schoolUtils.examReminder('Physics', 'June 20th'); // Output: Don't forget! Your Physics exam is on June 20th. schoolUtils.projectDeadline('Web Development', 'July 1st'); // Output: Your Web Development project is due on July 1st. Better start working on it! schoolUtils.clubMeeting('Chess', 'Fridays', '5 PM'); // Output: The Chess club meeting is on Fridays at 5 PM. schoolUtils.partyReminder('Spring Break', 'Beach House', 'March 15th'); // Output: Hey, there's a Spring Break party at Beach House on March 15th. Don't miss it! schoolUtils.nostalgia();
Contribution
If you would like to contribute to the schoollife package, feel free to submit a pull request or open an issue on the GitHub repository.