New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gitignore-fs

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitignore-fs

determine if any file is gitignored (complete implementation of gitignore rules)

latest
Source
npmnpm
Version
2.2.3
Version published
Weekly downloads
366
57.76%
Maintainers
1
Weekly downloads
 
Created
Source

gitignore-fs

CircleCI Coverage Status semantic-release Commitizen friendly npm version

If you're using a library to ignore gitignored files, it probably doesn't do it right! Use this library to be match git behavior 100%.

Determine if any file is gitignored. This is intended to be a complete implementation of the gitignore spec, including $GIT_DIR, $GIT_DIR/info/excludes, and the core.excludesFile configuration variable.

Requires Node >= 8.

Getting started

npm install --save gitignore-fs
const Gitignore = require('gitignore-fs')

const gitignore = new Gitignore()

console.log(gitignore.ignoresSync('node_modules')) // true or false depending on your config

API

class Gitignore

Each instance of this class keeps a separate cache of gitignore rules.

new Gitignore([options])

Creates a new Gitignore instance.

options.initialRules (string[], optional)

These rules will be applied at lowest precedence (lower than rules from core.excludesFile). Paths with a slash in the beginning or middle are relative to the closest enclosing git directory.

options.finalRules (string[], optional)

These rules will be applied at highest precedence (higher than .gitignore files). Paths with a slash in the beginning or middle are relative to the closest enclosing git directory.

.ignores(path)

Determines if the given path is gitignored asynchronously.

path (string, required)

The path to test. Must end with / if it is a directory!

Returns (Promise<boolean>)

A promise that will resolve to true if path is gitignored, false otherwise

.ignoresSync(path)

Determines if the given path is gitignored synchronously.

path (string, required)

The path to test. Must end with / if it is a directory!

Returns (boolean)

true if path is gitignored, false otherwise

.clearCache()

Clears the entire gitignore rule cache.

Keywords

gitignore

FAQs

Package last updated on 12 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts