Low-code platforms and Full-code developers – a match made in hell?
1–7 of 7 posts
Re: Low-code platforms and Full-code developers – a match made in hell?
#2I'm yet to encounter a good example of generated boiler-plate. Every tool that spews out generated code is annoying to work with and you end up having to delete a bunch of files that don't apply.
Better frameworks encapsulate code-generation in a function calls and better abstractions.
Re: Low-code platforms and Full-code developers – a match made in hell?
#3> "A better approach would be to automate the generation of boilerplate code." I'm yet to encounter a good example of generated boiler-plate . Every tool that spews out generated code is annoying to work with and you end up having to delete a bunch of files that don't apply. Better frameworks encapsulate code-generation in a function calls and better abstractions.
1. files that you had to delete?
2. code generation in a function call?
3. better abstraction?
Re: Low-code platforms and Full-code developers – a match made in hell?
#4> "A better approach would be to automate the generation of boilerplate code." I'm yet to encounter a good example of generated boiler-plate . Every tool that spews out generated code is annoying to work with and you end up having to delete a bunch of files that don't apply. Better frameworks encapsulate code-generation in a function calls and better abstractions.
What is an example of: 1. files that you had to delete? 2. code generation in a function call? 3. better abstraction?
ng generate route 'about-page'
This creates a folder called "about-page" with a blank component. Then it modify's the app.routing module. Then it adds the component declaration to the app.module.The reason it's terrible is that it makes various assumptions about the naming of your files and project structure, which inevitably break things if they're don't match.
A good example of a better abstraction (a.k.a function call) is the [2] "nuxt" package. In this framework you don't need to generate a route, you just add a file to the '/pages' directory and the framework maps it to a route for you. It's a pleasant and simpler experience.
Re: Low-code platforms and Full-code developers – a match made in hell?
#5The earliest form of this trend that I can remember was Macromedia Authorware. Drag-n-drop flowchart style of development with optional coding features.
Re: Low-code platforms and Full-code developers – a match made in hell?
#6Earlier quoted context omitted.
What is an example of: 1. files that you had to delete? 2. code generation in a function call? 3. better abstraction?
Well the [1] "@angular/cli" package is one example of code generation I don't like. For example you can create a new page with: ng generate route 'about-page' This creates a folder called "about-page" with a blank component. Then it modify's the app.routing module. Then it adds the component declaration to the app.module. The reason it's terrible is that it makes various assumptions about the naming of your files and…
Re: Low-code platforms and Full-code developers – a match made in hell?
#7> "A better approach would be to automate the generation of boilerplate code." I'm yet to encounter a good example of generated boiler-plate . Every tool that spews out generated code is annoying to work with and you end up having to delete a bunch of files that don't apply. Better frameworks encapsulate code-generation in a function calls and better abstractions.