|
|
|
|
|
by aciswhat
2191 days ago
|
|
Hello Hacker News! This is something I quickly prototyped yesterday to automatically generate a REST API from existing Mongoose schemas. It's incredibly useful for mocking your exact backend, or just spinning up an MVP backend. Authentication is also built in (currently only supports email/password, but more in the works). I implemented granular permissions for API routes that can be set via configuration really easily, which uses JWTs from the user login. |
|
This is neat.
Does this mean - if your generator finds a new model in mongodb, it autogenerates model file within the folder and vice-versa it creates APIs if there is a new model file within model folder ?