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

pi-finder

v3.0.2

Published

Raspberry Pi Finder

Downloads

3

Readme

Pi Finder Dependency Status

Pi Finder Overview

Description

This is a little helper to find your Raspberry Pi in a DHCP network.

Installation

You need to run all these commands on your Rasberry Pi.

1. Run the installer

$ wget http://bit.ly/pi-finder_installer -O - | sudo bash
Run this command only if the first failed!

If you haven't wget installed, try the curl command:

$ curl -fsSL http://bit.ly/pi-finder_installer | sudo bash

2. Configure

Open the configuration file config.js...

$ sudo nano $(npm config get prefix)/lib/node_modules/pi-finder/config.js
# The real path could be /usr/lib/node_modules/pi-finder/config.js or /usr/local/lib/node_modules/pi-finder/config.js

...and change the name from My Awesome Pi to a name you'll recognise.

module.exports = {
	// ...
	name: "Manuel's Pi",
	// ...
}

3. Start Pi Finder

Add the pi finder to the start up

$ sudo service pi-finder start

4. Reboot (optional)

To test the configuration, restart your Pi and check the Pi Finder!

$ sudo reboot

Usage Linux

Start Pi Finder

$ sudo service pi-finder start

Stop Pi Finder

$ sudo service pi-finder stop

Restart Pi Finder

$ sudo service pi-finder restart

Status of the Pi Finder

$ sudo service pi-finder status

Usage OS X

Start Pi Finder

$ sudo launchctl load /Library/LaunchDaemons/xyz.pi-finder.plist

Stop Pi Finder

$ sudo launchctl unload /Library/LaunchDaemons/xyz.pi-finder.plist

Restart Pi Finder

$ sudo launchctl unload /Library/LaunchDaemons/xyz.pi-finder.plist
$ sudo launchctl load /Library/LaunchDaemons/xyz.pi-finder.plist

Status of the Pi Finder

$ sudo launchctl list | grep xyz.pi-finder

If you see any output, the pi finder is running

If you are using an old Pi Finder installation on OS X

Start Pi Finder

$ sudo launchctl load /Library/LaunchDaemons/ch.strebl.pi-finder.plist

Stop Pi Finder

$ sudo launchctl unload /Library/LaunchDaemons/ch.strebl.pi-finder.plist

Restart Pi Finder

$ sudo launchctl unload /Library/LaunchDaemons/ch.strebl.pi-finder.plist
$ sudo launchctl load /Library/LaunchDaemons/ch.strebl.pi-finder.plist

Status of the Pi Finder

$ sudo launchctl list | grep ch.strebl.pi-finder

If you see any output, the pi finder is running