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

@ivanmaxlogiudice/gitignore

v0.0.2

Published

Parse .gitignore files into an array of patterns.

Downloads

508

Readme

@lg/gitignore

npm version npm downloads bundle JSDocs License

Parse .gitignore files into an array of patterns.

Features

  • Parse .gitignore content: Extracts patterns from the content of a .gitignore file.
  • Parse .gitignore file: Reads and extracts patterns from a .gitignore file at a given path.
  • Dedupe patterns: Removes duplicate patterns.
  • Convert patterns: Converts .gitignore patterns to minimatch patterns or regular expressions.
  • Flat configuration: Converts an array of patterns to a flat configuration object.
  • Pattern matching: Tests if a pattern is ignored based on accept and ignore regular expressions.

Usage

bun i -D @lg/gitignore

Parsing .gitignore content

import fs from 'node:fs'
import { parse } from '@lg/gitignore'

const patterns = parse(fs.readFileSync('.gitignore', 'utf-8'))
console.log(patterns) // [ "node_modules", "dist" ]

Parsing .gitignore file

import { parsePath } from '@lg/gitignore'

const patterns = parsePath('.gitignore')
console.log(patterns) // [ "node_modules", "dist" ]

Deduping Patterns

import { dedupe } from '@lg/gitignore'

const patterns = ['node_modules', 'node_modules', 'dist']
const uniquePatterns = dedupe(patterns)
console.log(uniquePatterns) // ['node_modules', 'dist']

Converting Patterns to Minimatch

import { toFlatConfig } from '@lg/gitignore'

const patterns = ['node_modules', 'dist']
const flatConfig = toFlatConfig(patterns, { name: 'ignore-files' })
console.log(flatConfig) // { name: 'ignore-files', ignores: ['**/node_modules', '**/dist'] }

Check if ignored

import { ignore, toRegex } from '@lg/gitignore'

const patterns = ['.abc/*', '!.abc/d/']
const regex = toRegex(patterns)

console.log(ignore(regex, '.abc/a.js')) // true
console.log(ignore(regex, '.abc/d/e.js')) // false

API

parse(content: string, options?: ParseOptions): string[]

Parses the given content of a .gitignore file and extracts the patterns.

  • content: The content of the .gitignore file.
  • options: Options for parsing.
    • dedupe: Whether to remove duplicate patterns.

parsePath(filepath: string, options?: ParsePathOptions): string[]

Reads the contents of the given gitignore filepath and extracts the patterns.

  • filepath: The path to the .gitignore file.
  • options: Options for parsing the file.
    • dedupe: Whether to remove duplicate patterns.
    • strict: Whether to throw an error if the file path is invalid.

dedupe(patterns: string[]): string[]

Removes duplicate patterns from the array.

  • patterns: The array of patterns to dedupe.

convertIgnorePatternToMinimatch(pattern: string): string

Converts a .gitignore pattern to a minimatch pattern.

  • pattern: The .gitignore pattern to convert.

toFlatConfig(patterns: string[], options?: ParseFlatOptions): { name: string, ignores: string[] }

Converts an array of .gitignore patterns to a flat configuration object.

  • patterns: The array of .gitignore patterns to convert.
  • options: Options for the flat configuration.
    • name: Name of the configuration.

toRegex(patterns: string[]): ParsePatternsRegex

Converts an array of patterns into regular expressions for matching.

  • patterns: The array of patterns to convert.

ignore(regex: ParsePatternsRegex, pattern: string): boolean

Tests if a pattern is ignored based on the provided accept and ignore regular expressions.

  • regex: The compiled accept and ignore regular expressions.
  • pattern: The pattern to test.

License

MIT License © 2022-PRESENT Iván Máximiliano, Lo Giudice