Socket
Socket
Sign inDemoInstall

app-paths

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    app-paths

Just a basic module to get the base path to the lib, config or other paths for a typical node app


Version published
Maintainers
1
Install size
820 kB
Created

Readme

Source

app-paths

It helps to get the path relative to the root of the node app.

var basePaths = require('app-paths')();

console.log(basePaths.pathTo('lib')); // APP_PATH/lib
IMPORTANT

This module only works when you have a node_modules directory in the root of your node application.

Methods

To start using it require the module:

var basePaths = require('app-paths')();

console.log(basePaths.base()); // APP_PATH/

Or you can pass some options:

var options = {
    views: 'path/to/views',
    routes: 'path/to/routes'
}
var basePaths = require('app-paths')(options);

console.log(basePaths.pathTo('routes')); // APP_PATH/path/to/routes

base()

It returns the path to the application root path.

lib()

It returns the path to the lib path.

config()

It returns the path to the config path.

pathTo(dir)

It returns the path to the directory (dir) passed as a parameter relative to the node application.

fromRoot(filepath) or _(filepath)

It returns the application root path plus the filepath. Useful when you are requiring a module.

Basic example:

app
  - lib
  - config
  - node_modules
  - index.js

var basePaths = require('app-paths')();
console.log(basePaths.base());           // /path/to/app/
console.log(basePaths.pathTo('lib'));    // /path/to/app/lib
console.log(basePaths.lib());            // /path/to/app/lib
console.log(basePaths.config());         // /path/to/app/config
console.log(basePaths.pathTo('a/b/c'));  // /path/to/app/a/b/c

Another example:

app
  - lib
  - config
  - node_modules
  - index.js

var myPaths = {
    views: 'path/to/my/views',
    routes: 'path/to/my/routes',
    assets: 'path/to/my/assets'
}
var basePaths = require('app-paths')(myPaths);

console.log(basePaths.base());           // /path/to/app/
console.log(basePaths.pathTo('lib'));    // /path/to/app/lib
console.log(basePaths.pathTo('a/b/c'));  // /path/to/app/a/b/c

console.log(basePaths.pathTo('views'));  // /path/to/app/path/to/my/views
console.log(basePaths.pathTo('routes')); // /path/to/app/path/to/my/routes

.fromRoot(filepath) or ._(filepath) example:

app
  - lib
  - config
  - node_modules
  - index.js

var paths = require('app-paths')();

console.log(paths.fromRoot('/my/path/to/models/user'));  // /path/to/app/my/path/to/models/user
console.log(paths._('/my/path/to/models/user'));         // /path/to/app/my/path/to/models/user

Install

With npm do:

npm install app-paths --save

License

MIT

Keywords

FAQs

Last updated on 07 Jan 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc