feat: implement database handlerImplement a database api to manage nodes and relationships in a "graph databaselike" implemented in sqlite.closes #1

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent 5aaacb10e3
commit b2d8dadcee
17 changed files with 963 additions and 0 deletions

View file

@ -0,0 +1,6 @@
name,category,metadata
React,ui framework,"{""website"":""https://reactjs.org"",""github"":""facebook/react"",""npm"":""react"",""type"":""library""}"
Express,web framework,"{""website"":""https://expressjs.com"",""github"":""expressjs/express"",""npm"":""express"",""type"":""framework""}"
Axios,http client,"{""website"":""https://axios-http.com"",""github"":""axios/axios"",""npm"":""axios"",""type"":""library""}"
Socket.io,websockets,"{""website"":""https://socket.io"",""github"":""socketio/socket.io"",""npm"":""socket.io"",""protocol"":""ws""}"
Commander.js,cli,"{""website"":""https://tj.github.io/commander.js"",""github"":""tj/commander.js"",""npm"":""commander""}"
1 name category metadata
2 React ui framework {"website":"https://reactjs.org","github":"facebook/react","npm":"react","type":"library"}
3 Express web framework {"website":"https://expressjs.com","github":"expressjs/express","npm":"express","type":"framework"}
4 Axios http client {"website":"https://axios-http.com","github":"axios/axios","npm":"axios","type":"library"}
5 Socket.io websockets {"website":"https://socket.io","github":"socketio/socket.io","npm":"socket.io","protocol":"ws"}
6 Commander.js cli {"website":"https://tj.github.io/commander.js","github":"tj/commander.js","npm":"commander"}