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

stopp

v1.0.7

Published

Stop Procrastinating: Command-line utility to block and unblock time-wasting sites.

Downloads

12

Readme

#Stopp A command-line utility to help you stop procrastinating

Stopp is a simple network filter intended to be used to block yourself from wasting time on sites like Facebook, Reddit, and Hacker News when you're trying to get work done.

Stopp stands for Stop Procrastinating, and it works simply by adding entries to your system's hosts file, and routing them to (by default) 0.0.0.0, which effectively renders the desired website useless.

Stopp is super easy to toggle on and off, just use the stopp on and stopp off commands. You may have to wait up to 5 minutes when enabling Stopp for your DNS cache(s) to update, but turning it off is usually instant (try doing a hard refresh in your browser — command + shift + r in Chrome — if it doesn't update right away).

You should note that when adding domains to the filter, subdomains are always treated as seperate domains. For example, adding reddit.com will not block www.reddit.com. This is just how the hosts file works.

~~Additionally, this application makes a backup of your hosts file each time it is modified, and stores it in ./backups/, so if anything goes horribly wrong, you should probably be able to recover.~~ See issue 1.

Some planned (if I get around to it, or someone submits a pull request) features include:

  • Optionally set a timer for the filter, sgo that you can't turn it off until the timer expires
  • Import and export filter lists as JSON
  • Include default filter lists full of common time-wasting sites for easy plug-n-play
  • Automatically detect subdomains and offer to add them to the filter (e.g. if you enter reddit.com, the script will offer to add www.reddit.com, np.reddit.com, etc.)
  • Improved CLI design

###Notes

Mac OS X is the only supported OS. (Tested on 10.10)

WARNING: Use at your own risk. This program modifies the HOSTS file on your system.
Author(s) assume no responsibility or liability for any damages that may occur as a result, direct or indirect, of the use of this software.

WARNING: It is not recommended to modify your HOSTS file while the filter is ON!

###Install npm install -g stopp

###Usage stopp <command> [args] (you may need to run it as root with sudo) Example: stopp add reddit.com

####Commands: help - Show help menu
on - Turn the filter on
off - Turn the filter off
status - Show the filter status
list - List all filtered addresses
add <domain> [<domain> ...] - Add specified domain(s) to filter (don't include http(s)://)
del <domain> [<domain> ...] - Remove specified domain(s) from filter

###Contributing Feel free to submit pull requests. Please adhere to the NPM coding style.

###License MIT license. See LICENSE.md

###Misc I wrote this application whilst procrastinating. :)