Is there any ORM tool for javascript that supports code first?

suppose there are two classes of type

function Book(isbn, title, author, publisher){ this.isbn = isbn; this.title = title; this.author = author; this.publisher = publisher; } function Publisher(title, location) { this.title = title; this.location = location; } 

Is there any tool that can generate sqlite database from the code mentioned above?

+4
source share

Source: https://habr.com/ru/post/1438562/


All Articles