GitXplorerGitXplorer
l

nedb-to-mongodb

public
85 stars
20 forks
4 issues

Commits

List of commits on branch master.
Unverified
9464d3da8a2a400f888121a2ddeee70ef3bacdb2

Update README.md

llouischatriot committed 9 years ago
Unverified
311a4b98768cc09c4fa730646951fa053058d822

Update README.md

llouischatriot committed 9 years ago
Unverified
3c832897f57bd4386a01bf229f38aa94eb6db42a

Update package.json

llouischatriot committed 9 years ago
Unverified
e82641090c076a4f2903a227cd27b7ad2980088b

Merge pull request #4 from danyshaanan/master

llouischatriot committed 11 years ago
Unverified
d976fac97b96dc575068aa791999419aebe05d50

added missing cd <folder>

ddanyshaanan committed 11 years ago
Unverified
80fd4daa0269ad7017313d8ee7317fcbedfb923a

Update README.md

llouischatriot committed 12 years ago

README

The README file for this repository.

nedb-to-mongodb

If you've outgrown NeDB, use this utility to transfer all your data in a nedb database in a MongoDB collection.

IMPORTANT: this uses by default the latest versions of nedb and the mongodb driver. If you're not using these the script may not work and you need to modify the package.json.

Please follow the NeDB bug reporting guidelines if you submit an issue.

Installation

git clone git@github.com:louischatriot/nedb-to-mongodb.git
cd nedb-to-mongodb
npm install

Usage

Usage is pretty straightforward. All the information you need is one ./transfer.js --help away. Here is what this command tells you:

Usage: ./transfer.js [options]

Options:

-h, --help                      output usage information
-V, --version                   output the version number
-h --mongodb-host [host]        Host where your MongoDB is (default: localhost)
-p --mongodb-port [port]        Port on which your MongoDB server is running (default: 27017)
-d --mongodb-dbname [name]      Name of the Mongo database
-c --mongodb-collection [name]  Collection to put your data into
-n --nedb-datafile [path]       Path to the NeDB data file
-k --keep-ids [true/false]      Whether to keep ids used by NeDB or have MongoDB generate ObjectIds
                                (probably a good idea to use ObjectIds from now on!)

License

(The MIT License)

Copyright (c) 2013 Louis Chatriot <louis.chatriot@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.