Skip to content

Commit

Permalink
Merge pull request #7 from ariflogs/dev
Browse files Browse the repository at this point in the history
Release 0.1.0
  • Loading branch information
ariflogs authored Oct 9, 2023
2 parents f9ff9d1 + 0ed4403 commit b20f3df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
```
Expand All @@ -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(
Expand All @@ -41,6 +37,8 @@ console.log(resp);
}]*/
```

---

### Roadmap

- [ ] Database
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit b20f3df

Please sign in to comment.