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

schoollife

v1.0.4

Published

Package to make you remember your school life

Downloads

11

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:

  1. Import the functions you want to use from the package:
    const schoolUtils = require('schoollife');
  2. 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:

  1. In your project directory, create a package.json file if it doesn't already exist:
    npm init -y
  2. Open the package.json file and add the following line:
     {
    "type": "module"
    }
  1. 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).

  2. Import the schoollife package using the ES6 module syntax:

    import * as schoolUtils from 'schoollife';
  3. 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.