1. find-up-simple
Find a file or directory by walking up parent directories — Zero dependencies
find-up-simple
Package: find-up-simple
Created by: sindresorhus
Last modified: Fri, 03 Nov 2023 19:46:39 GMT
Version: 1.0.0
License: MIT
Downloads: 3,487,267
Repository: https://github.com/sindresorhus/find-up-simple

Install

npm install find-up-simple
yarn add find-up-simple

find-up-simple

Find a file or directory by walking up parent directories

This is a simpler version of my find-up package, now with zero dependencies.

Install

 npm install find-up-simple

Usage

/
└── Users
    └── sindresorhus
        ├── unicorn.png
        └── foo
            └── bar
                ├── baz
                └── example.js

example.js

 import path from 'node:path';
import {findUp} from 'find-up-simple';

console.log(await findUp('unicorn.png'));
//=> '/Users/sindresorhus/unicorn.png'

API

findUp(name, options?)

Returns a Promise for the found path or undefined if it could not be found.

findUpSync(name, options?)

Returns the found path or undefined if it could not be found.

name

Type: string

The name of the file or directory to find.

options

Type: object

cwd

Type: URL | string
Default: process.cwd()

The directory to start from.

type

Type: string
Default: 'file'
Values: 'file' | 'directory'

The type of path to match.

stopAt

Type: URL | string
Default: Root directory

A directory path where the search halts if no matches are found before reaching this point.

FAQ

How is it different from find-up?

  • No support for multiple input names
  • No support for finding multiple paths
  • No custom matching
  • No symlink option
  • Zero dependencies
  • find-up - A more advanced version of this package
  • find-up-cli - CLI for this module
  • pkg-up - Find the closest package.json file
  • pkg-dir - Find the root directory of an npm package

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code