Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 483 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 483 Bytes

tiny-sql

A tiny in-memory database written in Node.js

Requirements

  • Node >= 18.x
  • NPM / Yarn

Installation

First, install the dependencies with

yarn

Then, build it running

yarn build

Start the app with

yarn start

Or you can skip the build process entirely running yarn dev. 😸

Features

  • CREATE TABLE
  • SELECT
  • UPDATE
  • INSERT
  • DELETE
  • WHERE
  • ORDER BY
  • LIMIT
  • JOINS
  • ALIASES