current-path-join

Join the path with current directory.

Usage no npm install needed!

<script type="module">
  import currentPathJoin from 'https://cdn.skypack.dev/current-path-join';
</script>

README

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
  )
}