You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

mongodb-dbpath

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

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
Source
npmnpm
Version published
Maintainers
1
Created
Source

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

Keywords

mongodb

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