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.
In Node Only.
npm i -D 'current-path-join'
yarn add -D 'current-path-join'
Then
const join = require('current-path-join')
join('path','to','something')
// => {absolute}/path/to/something
Alright, it's that.
// src/index.js
module.exports = function (...paths) {
return path.join(
path.dirname(module.parent.filename),
...paths
)
}