0.1.1 • Published 4 years ago

current-path-join v0.1.1

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

current-path-join

Build Status npm module

Introduction

When i need to read some file or do something similar, i have to write like this

const path = require('path')

path.join(__dirname, './path/to/something')

Oh, it's redundantly.

This tiny library make this scene a little simpler.

Usage

In Node Only.

npm i -D 'current-path-join'
yarn add -D 'current-path-join'

Then

const join = require('current-path-join')

join('my', 'path', 'to', 'you')
// => {absolute}/my/path/to/you

Alright, it's that.

Internal

// src/index.js

module.exports = function (...paths) {
  return path.join(
    path.dirname(module.parent.filename),
    ...paths
  )
}