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

fs-gui

v1.5.0

Published

This package is like a GUI for "fs", it allows you to make a browser for files and more.

Downloads

7

Readme

fs-gui

Overview

Welcome to the fs-gui. This package allows you to add file selection menus to your programs. See below to example usage.

How to use

  1. First you have to install the package using npm i fs-gui or fork the repo
  2. You need to require it in your code.
const Explorer = require("fs-gui")
  1. Use the functions below, you can change Explorer for whatever you would like.

  • Explorer.searchDir(message)

    The searchDir function creates a selection menu for selecting a directory.

    This function returns the path of the directory selected.

    The message parameter is the message to show the user, [e.g. "Select a folder"]


  • Explorer.searchAll(message)

    The searchAll function creates a selection menu for selecting all files.

    This function returns the path to file/directory chosen.

    The message parameter is the message to show the user, [e.g. "Select a file or folder"]


  • Explorer.searchCustom(message, ext)

    The searchCustom function creates a selection menu for selecting all files. This function returns the path to file/directory chosen

    The message parameter is the message to show the user, [e.g. "Select a file or folder"].

    The ext parameter is an array, containing the file extensions. [e.g. [".txt",".pdf"]]

  • Explorer.createFile(data)

    The createFile functions creates a menu, showing the normal folders, but adds an extra option Create File. Once selected Create File asks for the name and extension. The data parameter is the contents of the file. It must be string.

  • Explorer.createCustomFile(data, name)

    Similar to createFile, but the name is already specified.

  • Explorer.createFolder()

    The createFolder functions creates a menu, showing the normal folders, but adds an extra option Create Folder. Once selected Create Folder asks for the folder name.

  • Explorer.deleteFile()

    The delete folder function is like the searchAll function, but for deleting files

  • Explorer.deletFolder()

    The delete folder function is like the searchDir function, but for deleting folders.

Examples

The examples below are assuming your code has the following line

const Explorer = require("fs-gui")
  • If you wanted the user to select a pdf file
Explorer.searchCustom("Select a PDF", [".pdf"])
  • If you wanted the user to select a directory in the node_modules folder
process.chdir("node_modules")
Explorer.searchDir("Select a directory")