Skip to content

Commit dd7b8ce

Browse files
committed
initial commit πŸ”₯
0 parents  commit dd7b8ce

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.env
2+
node_modules

β€Žpackage.jsonβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"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β€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export const greetings = () => {
2+
console.log('Hi πŸ‘‹, I can run SQL commands on your Mongodb database! 😁')
3+
}

0 commit comments

Comments
Β (0)