Socket
Book a DemoInstallSign in
Socket

@beautiful-code/path-resolver

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@beautiful-code/path-resolver

Path resolver was inspired by inspecting create-react-app. In the webpack configuration, it is always necessary to resolve paths and make them manageable. Auto-generating functions based on path name make it easy to mock things up, and aliases are useful

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

Path Resolver

Path resolver was inspired by inspecting create-react-app. In the webpack configuration, it is always necessary to resolve paths and make them manageable. Auto-generating functions based on path name make it easy to mock things up, and aliases are useful to reduce code for deeply nested directories. Aliases can also be extracted and used as-is in webpack config.

Prerequisites

npm - Installation
babel-cli - Build
Mocha - Testing
jsdoc - Generate Docs

$ npm install -g babel-cli jsdoc mocha

Installation

Start by installing Path Resolver through npm.

$ npm install --save @beautiful-code/path-resolver

Then in any of your js files, import the PathResolver object.

// ES5 Syntax
let PathResolver = require('@beautiful-code/path-resolver').PathResolver

// ES6 Syntax
import { PathResolver } from '@beautiful-code/path-resolver'

let resolver = new PathResolver({ ...options })
let paths = resolver.getDirectoryResolver()

// By default, you will automatically get a 'resolve' function from your path resolver.
// This resolves paths relative to the current working directory.

paths.resolve('index.html')
// C:/current/working/directory/index.html

How To Use

Basic Usage

Path Resolver works by accepting a path map, and using that to determine all of the 'resolvers'. A resolver is a function that takes a relative path and resolves it to a specific, preset directory.

// This is an example resolver function.
let resolveSrc = (relativePath) => path.resolve(process.cwd() + '/src', relativePath)

resolveSrc('js/index.js')
// C:/current/working/directory/src/js/index.js

You can select these preset directories by passing in a paths map to the PathResolver constructor.

let resolver = new PathResolver({
    src: {
        js: {}
        css: {}
    },
    public: {
        js: {},
        css: {}
    }
})

let paths = resolver.getDirectoryResolver()
// With this configuration, you will get the following functions.
// Each function will resolve to the specified directory within the current working directory. The 'resolve' function will resolve to the current working directory.

let {
    resolve
    resolveSrc, resolveSrcJs, resolveSrcCss,
    resolvePublic, resolvePublicJs, resolvePublicCss
} = paths

resolve()                  // C:/current/working/directory
resolveSrc()               // C:/current/working/directory/src
resolveSrc('index.html')   // C:/current/working/directory/src/index.html
resolveSrcCss()            // C:/current/working/directory/src/css
resolveSrcJs('index.html') // C:/current/working/directory/src/js

Directory Options

You can also configure individual directories. You can use this to rename the resolver function names, and also to generate a list of aliases to use with Webpack, Babel, or similar frameworks. The configuration is designated by using a '_' as a child property. Here are the available options.

OptionsTypeDescription
nameStringRename the current directory, without changing the path.
aliasStringCreate an alias, rescoping the function to the alias, without changing the path

*NOTE: Child routes will respect the renaming as well. By default, a rename will replace the function for the respective path, while an alias will duplicate it.

let resolver = new PathResolver({
    src: {
        _: { name: 'source' },
        js: {}
    },
    public: {
        components: { 
            _: { alias: '@components' }
        }
    }
})

let paths = resolver.getDirectoryResolver()
let { resolveSource, resolveComponents } = paths

resolveSource()     // C:/current/working/directory/source
resolveComponents() // C:/current/working/directory/public/components

// Do paths still work?

let { resolveSrc, resolvePublicComponents } = paths

resolveSrc() // This is undefined, throws an error
resolvePublicComponents() // resolves correctly

Documentation

You can read the full documentation here!

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Chris Coppola - Project Creator

See also the list of contributors who participated in this project.

License

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

FAQs

Package last updated on 15 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts