An implementation of Tutorial (Let's Build a Simple Database) in TypeScript.
This implementation can't use in production.
$ node -v
v19.0.1
$ npm start mydb.db
> [email protected] start
> node build/src/main.js mydb.db
db > select
(1, tako, [email protected])
Executed.
db > insert 2 surume [email protected]
Executed.
db > select
(1, tako, [email protected])
(2, surume, [email protected])
Executed.
db > .exit