Skip to content

Commit

Permalink
Merge pull request #14 from socialatm/master
Browse files Browse the repository at this point in the history
update dependencies and new test db
  • Loading branch information
myisaak authored Mar 28, 2024
2 parents da91364 + 4019d40 commit 367269a
Show file tree
Hide file tree
Showing 5 changed files with 4,078 additions and 1,283 deletions.
9 changes: 9 additions & 0 deletions app.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import sqlitemongo from 'sqlitemongo';

async function test() {
var sqlitePath = './sample.db';
var mongoURI = 'mongodb://localhost:27017';
var mongoDbName = 'test-database';
await sqlitemongo(sqlitePath, mongoURI, mongoDbName /* optional */);
}
test().catch(console.error);
Loading

0 comments on commit 367269a

Please sign in to comment.