Here is the node.js package that can port sqlite to mongo:
https://github.com/davidyaha/sqlite-to-mongo
https://www.npmjs.com/package/sqlite-to-mongo
, mongo, Meteor . - sqlite Meteor . , :
const SqliteToMongo = require('sqlite-to-mongo');
var importer = new SqliteToMongo('db.sqlite', 'mongodb://localhost/dbname');
importer.importCollection('users', {
tableName : "USERS_TABLE",
columns: {
ID: '_id',
USERNAME: 'username',
EMAIL : 'profile.email'
}
});
db.sqlite sqlite mongodb://localhost/dbname . , :
mongodb:
dbname - . - , "" - (), USERS_TABLE - sqlite. sqlite mongo.