diff --git a/README.md b/README.md index e4716f7..4988ed6 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,13 @@ -## SQL-to-NOSQL +### SQL-to-NOSQL As the name suggests, **sql-to-nosql** lets you run SQL scripts on your NoSQL database. -## Status - ---- +### Status The project is under active development and is not yet ready to use in production. I'm aiming to launch _v-1.0_ by November 2023 with some of the most common sql operations. 🤞 ### Installation ---- - ```bash npm insall sql-to-nosql ``` @@ -24,7 +20,7 @@ import { SqlToNoSql } from "sql-to-nosql"; const runner = new SqlToNoSql({ srcDBtype: "postgresql", destDBtype: "mongodb", - connection: "YOUR_DIST_DB_CONNECTION_STRING", + connection: "YOUR_DEST_DB_CONNECTION_STRING", }); const resp = await runner.run( @@ -41,6 +37,8 @@ console.log(resp); }]*/ ``` +--- + ### Roadmap - [ ] Database diff --git a/package.json b/package.json index 9108352..24ce3ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sql-to-nosql", - "version": "0.0.6", + "version": "0.1.0", "description": "Run SQL quries on your Mongodb database.", "repository": { "type": "git",