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 🙏

© 2025 – Pkg Stats / Ryan Hefner

alfred-open-in-ide

v0.0.1

Published

This workflow opens directories in your integrated development environment (IDE) of choice using fuzzy search. Supported IDEs include:

Readme

Open in IDE Alfred Workflow

This workflow opens directories in your integrated development environment (IDE) of choice using fuzzy search. Supported IDEs include:

  • Cursor
  • VS Code
  • JetBrains Webstorm

[!IMPORTANT] Before using this workflow make sure your IDE terminal command is installed, available in $PATH, and you can open directories/files directly from terminal. e.g. cursor ~/dev/myproject.

demo

Installation

NPM

npm install -g alfred-open-in-ide

Github releases

  1. Download the latest release from the releases page
  2. Double-click the downloaded .alfredworkflow file to install
  3. Alfred will prompt you to import the workflow - click "Import"

Usage

Configuration

  1. Open Alfred Preferences
  2. Go to the Workflows tab
  3. Find "Open in IDE" in your workflows list
  4. Click the workflow to open its settings
  5. Click the "Configure" button to open the configuration panel

configuration

In the configuration panel, you can:

  • Projects Directory: Set the path to your projects directory using glob patterns. For example:

    • ~/Projects/* - All directories in your Projects folder
    • ~/Projects/*/* - All directories and their immediate directories in your Projects folder
    • ~/Projects/{project1,project2} - Specific projects
  • IDE Selection: Choose your preferred IDE from the dropdown menu. Available options:

    • Cursor (default)
    • Visual Studio Code
    • WebStorm

Activation

Once configured the Alfred keyword will match the name of your chosen IDE (cursor, code, or webstorm). Open alfred, type the name of your chosen IDE followed by a space, now begin typing the name of the directory/project you want to open.

Development

Prerequisites

  • Node.js 20 or later
  • pnpm 10 or later
  • Alfred 5 or later

Setup

  1. Clone the repository:

    git clone https://github.com/jackw/alfred-open-in-ide.git
    cd alfred-open-in-ide
  2. Install dependencies:

    npm install

    [!Note] This will also install the workflow in Alfred.

  3. Start development mode:

    npm start

Building

To build the workflow for distribution:

pnpm build

Testing

Run the test suite:

pnpm test

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Thanks

This workflow wouldn't exist without these awesome projects:

  • https://github.com/sindresorhus/alfy
  • https://github.com/vivaxy/alfred-open-in-vscode
  • https://github.com/leeoniya/uFuzzy