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

pathre

v1.0.0

Published

[![NPM](https://nodei.co/npm/pathre.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/pathre/)

Downloads

9

Readme

NPM

Travis Codecov PRs Welcome license

path-resolver utility functions for node

Pathre consists of validation and get functions which make dealing with path super simple and easy :ok_hand:

Usage

Validation functions

Get functions

Other

Getting Started

clone the repo:

git clone [email protected]:jimmy02020/pathre.git
cd pathre

Using npm:

$ npm install pathre

Validation:

const { check } = require('pathre')

isPathValid(path)

Validate given path. If path is valid returns true, otherwise returns false.

Example

check.isPathValid('whatever') // false
check.isPathValid(path.join(__dirname)) // true

isPathDir(path)

If path is for directory (not file) returns true, otherwise returns false.

Example

check.isPathDir('/path/here/') // true
check.isPathDir('/path/here/test.txt') // false

isPathFile(path)

If path is for file (not directory) returns true, otherwise returns false.

Example

check.isPathFile('/path/here/test.txt') // true

isExist(path, callback)

If path is valid/existent returns true, otherwise returns false.

NOTE: Path can be valid path but not for existence path. If you check for existence use isExist if you validate the path before create it use isValid.

Example

isExist('/here/dir', (isExsist) => {
  if(isExsist){
    // do something
    console.log("valid");
  } else {
    // do something else
    console.log("invalid");
  }
})

isFileZeroSize(path, callback)

If file is valid and zero size then true, otherwise returns false.

Example

isFileZeroSize('/here/dir/empty.txt', (isZero) => {
  if(isZero){
    // do something
    console.log("file is empty");
  } else {
    // do something else
    console.log("file has info in it empty");
  }
})

Get functions:

const { get } = require('pathre')

directory(path)

Returns string has directory name, whether the path is with file name or without it.

Example

get.directory('/path/here/.env.test') // '/path/here

fileName(path)

Returns string has file name.

Example

get.fileName('/path/here/.env.test') // .env.test

fileExt(path)

Returns string has file extension.

Example

get.fileExt('/path/here/.env.test') // env
get.fileExt('/path/here/filename.txt') // txt

fileStat(path, callback)

Gets text statistics from file. The function is implementation of textics-stream

The callback gets two arguments (err, stat).

stat object consists of:

  • lines
  • words
  • chars
  • spaces

Example

get.fileStat('dir/dir2/file.txt', (err, stat) => {
  console.log(stat);
  //
  {
    lines: 1830,
    words: 4483,
    chars: 12584,
    spaces: 3004,
  }
  //
});

pathType(path)

Gets path type, file or directory.

returns {isDir, isFile}.

Example

const type = get.pathType('dir/here/emptyfile.txt')
console.log(type);
//
{
  isDir: false,
  isFile: true,
}
//

pathStat(path, callback)

Gets the main properties from path.

The callback gets two arguments (err, stat).

stat object consists of:

  • isValid
  • isDir
  • isFile
  • size

Example

get.pathStat('dir/here/emptyfile.txt', (err, stat) => {
  console.log(stat);
  //
  {
    isValid: true,
    isDir: false,
    isFile: true,
    size: 0,
  }
  //
});

Tests

$ npm test

License

This project is licensed under the MIT License