
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@beautiful-code/path-resolver
Advanced tools
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
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.
npm - Installation
babel-cli - Build
Mocha - Testing
jsdoc - Generate Docs
$ npm install -g babel-cli jsdoc mocha
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
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
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.
| Options | Type | Description |
|---|---|---|
| name | String | Rename the current directory, without changing the path. |
| alias | String | Create 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
You can read the full documentation here!
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
FAQs
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
We found that @beautiful-code/path-resolver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.