We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit dd7b8ceCopy full SHA for dd7b8ce
β.gitignoreβ
@@ -0,0 +1,2 @@
1
+.env
2
+node_modules
βpackage.jsonβ
@@ -0,0 +1,11 @@
+{
+ "name": "mongoql",
3
+ "version": "0.0.1",
4
+ "description": "Run SQL quries on your Mongodb database.",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "Arif Hossain",
10
+ "license": "MIT"
11
+}
βsrc/index.jsβ
@@ -0,0 +1,3 @@
+export const greetings = () => {
+ console.log('Hi π, I can run SQL commands on your Mongodb database! π')
0 commit comments