I work with Node.JS and MySQL with "mysql" package. Is there is a way to define models with class ?? I read a lot and all opinion say i need sequellize for this. In angular i use data model like this:
export class Stage {
public name: string;
public consultation: string;
public approval: string;
public stageOrder: number;
}
Is there is a way to make it work in nodejs? Thanks