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

@ladrillo/ketchup

v0.0.18

Published

## About

Downloads

3

Readme

@ladrillo/ketchup

About

Ketchup is a CLI tool to allow teachers demoing a coding project to automatically commit & push to Github whenever changes are made to the files of the project, throttling to at most once every 20 seconds. Students can reset their files and folders to the teacher's remote branch if they fall behind, and teachers don't have to push manually. Students must clone the teacher's repo without forking it first.

Before Using Ketchup

  1. Be at the root folder of your project.
  2. Your project must be a git repo.
  3. Have a clean working tree, any outstanding changes will be stashed.
  4. Check out the branch you want to use as the starting point of the demo (usually "main").
  5. Decide on a target branch to push commits to, different from the starting point branch.

The Teacher

Execute once at the beginning of the demo:

npx @ladrillo/ketchup@latest foo-branch

If no branch name is provided (e.g. "foo-branch"), "lecture" is used instead. This is the branch Ketchup will push to, and students can reset to.

If Ketchup is closed during the demo, you can continue where you left off by running:

npx @ladrillo/ketchup@latest foo-branch resume

The Students

Students can catch up by executing:

git fetch && git reset --hard origin/foo-branch

In JavaScript projects a "ketchup" script can be added to the package.json:

{
  "scripts": {
    "ketchup": "git fetch && git reset --hard origin/foo-branch"
  }
}

In this case students can catch up by executing:

npm run ketchup

Notes

  1. If new packages are added to the project during the demo, students should run npm i after catching up.
  2. It's advisable that students have auto-save enabled in their editors.
  3. Students should close other programs besides their editors that might be accessing the project files, before catching up.
  4. Don't forget to gitignore the node_modules folder in JavaScript projects.