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

absent-files

v1.0.1

Published

A simple utility that checks if any the provided files are absent/missing in the provided directory.

Downloads

1

Readme

Absent Files

Getting Started

These instructions will get you a copy of absent-files on your local machine.

Installing

absent-files is available via npm

npm i absent-files --save

Built With

Versioning

We use SemVer for versioning.

Contributing

If you would like to contribute to this project, first of all, thank you. Checkout the CONTRIBUTING file before you make a Pull Request.

Authors

  • Martin Cox - Initial work

License

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

Usage

This is how you can use absent-files.

Basic Usage

The most basic usage of absent-files

With the following structure in the ./ directory (absent-files is case insensitive):

  • README.md
  • LICENSE
  • changelog.md

Example

const absentFiles = require('absent-files')

absentFiles(['readme.md', 'license', 'changelog.md'], './').then(result => {
    console.log(result)
})
// output: false
// "Indicating that no files are absent"

However, with the following structure in the ./ directory:

  • README
  • LICENSE
  • changelog

absent-files outputs an Array of the files that are absent.

// These files are absent from the provided directory
// output: ['readme.md', 'changelog.md']

Advanced Usage

You can however provid an options Object with the property ignoreExtensions set to true to ignore the extensions of filenames when checking.

With the following structure in the ./ directory:

  • README
  • LICENSE
  • changelog

Example

const absentFiles = require('absent-files')

absentFiles(['readme.md', 'license', 'changelog.md'], './', { ignoreExtensions: true }).then(result => {
    console.log(result)
})
// output: false

API Reference

Below is absent-files's API reference.

Note: You can either supply the first two arguments as files and directory followed by an optional options Object. Or you can just provide an options Object (with files and directory properties) as the only argument to absent-files.

files

File(s) to check for

  • Type: Array|String
  • Required: true
  • Default: none

Example

const absentFiles = require('absent-files')

absentFiles({
    files: 'LICENSE',
    directory: './'
}).then(result => {
    console.log(result)
})

directory

Directory to search for files in

  • Type: String
  • Required: true
  • Default: none

Example

const absentFiles = require('absent-files')

absentFiles({
    files: 'index.js',
    directory: 'path/to/my/files'
}).then(result => {
    console.log(result)
})

ignoreExtensions

Whether or not to ignore extensions when checking the files

  • Type: Boolean
  • Default: false

Example

const absentFiles = require('absent-files')

absentFiles({
    files: 'index.js',
    directory: 'path/to/my/files',
    ignoreExtensions: true
}).then(result => {
    console.log(result)
})
// Will match `index.js` or `index`

caseSensitive

Whether or not use case sensitivity when checking for files

  • Type: Boolean
  • Default: false

Example

const absentFiles = require('absent-files')

absentFiles({
    files: 'README.md',
    directory: './',
    caseSensitive: true
}).then(result => {
    console.log(result)
})
// Will only match `README.md` and not `readme.md`