Skip to content

Commit b20f3df

Browse files
authored
Merge pull request #7 from ariflogs/dev
Release 0.1.0
2 parents f9ff9d1 + 0ed4403 commit b20f3df

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
## SQL-to-NOSQL
1+
### SQL-to-NOSQL
22

33
As the name suggests, **sql-to-nosql** lets you run SQL scripts on your NoSQL database.
44

5-
## Status
6-
7-
---
5+
### Status
86

97
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. 🤞
108

119
### Installation
1210

13-
---
14-
1511
```bash
1612
npm insall sql-to-nosql
1713
```
@@ -24,7 +20,7 @@ import { SqlToNoSql } from "sql-to-nosql";
2420
const runner = new SqlToNoSql({
2521
srcDBtype: "postgresql",
2622
destDBtype: "mongodb",
27-
connection: "YOUR_DIST_DB_CONNECTION_STRING",
23+
connection: "YOUR_DEST_DB_CONNECTION_STRING",
2824
});
2925

3026
const resp = await runner.run(
@@ -41,6 +37,8 @@ console.log(resp);
4137
}]*/
4238
```
4339

40+
---
41+
4442
### Roadmap
4543

4644
- [ ] Database

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sql-to-nosql",
3-
"version": "0.0.6",
3+
"version": "0.1.0",
44
"description": "Run SQL quries on your Mongodb database.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)