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

rofi-google

v0.1.0

Published

Interactive Google search via rofi

Downloads

3

Readme

rofi-google

Interactive Google search via rofi.

Preview (click for large preview)

Installation

npm install -g rofi-google

or copy rofi-google to your $PATH

Features

  • search as you type
  • copy search result website url
  • open search result in web browser

Dependencies

Usage

You can choose between two methods of getting search results. Each one will give slightly different results.

  • Use googler for scraping the web for search results (default behavior)

    • googler does not parse information about number of search results
    • slightly slower than the other method which uses official google API
  • Use google's custom search engine API and set GOOG_API_KEY & GOOG_SEARCH_ID env variables

rofi

#either use custom search engine
export GOOG_API_KEY='google-api-key'
export GOOG_SEARCH_ID='google-search-engine-id'

#or optionaly set additional googler options (see googler --help)
export GOOGLER_ARGS='["--count", 5]'


#TITLE_COLOR allows you to customize search results title color (default blue),
#as this can't be set via rofi theme
export TITLE_COLOR='#3296c8'

rofi -modi blocks -blocks-wrap rofi-google -show blocks \ 
-lines 4 -eh 4 -kb-custom-1 'Control+y' -theme /path/to/your/theme.rasi

You can fetch rofi theme used in the gif preview HERE

supported actions
  • -kb-accept-entry - open url with xdg-open (aka. your default browser)
  • -kb-accept-custom - open search results on google.com in your browser
  • -kb-custom-1 - copy url to clipboard

TODO (PR is welcome)

  • [ ] make font sizes configurable