🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-dbpath

Get a path for --dbpath that's writeable for the current user and mkdirp it.

0.0.1
latest
78

Supply Chain Security

100

Vulnerability

89

Quality

83

Maintenance

100

License

Version published
Weekly downloads
792
137.13%
Maintainers
1
Weekly downloads
 
Created

mongodb-dbpath

Get a path for --dbpath that's writeable for the current user and mkdirp it.

Installation

# For use in other modules
npm install --save mongodb-dbpath

# For use from cli
npm install -g mongodb-dbpath

Usage

Usage: mongodb-dbpath <name>

Get a path for --dbpath that's writeable for the current user and mkdirp it.

Usage:
  mongodb-dbpath my-db
  # On your laptop `~/.mongodb/data/my-db`

  mongodb-dbpath my-db
  # On travis `process.cwd() + /.mongodb/data/my-db`

  mongodb-dbpath my-db
  # On appveyor `process.env.LOCALAPPDATA + \.mongodb\data\my-db`

Options:
  --debug              Enable debug messages.
  -h --help            Show this screen.
  --version            Show version.

API

var dbpath = require('mongodb-dbpath');
dbpath(opts, function done (err, res) { })

dbpath(opts, callback)

opts

Required

name - String Subdirectory name.

callback

err - Error Contains errors if no search options are writeable which would be very strange.

res - String Path you can pass to --dbpath.

License

Apache 2.0

FAQs

Package last updated on 24 Jul 2015

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