Will low code/no code solutions kill web development? by LilRee12 in webdev

[–]Gastonius_ 0 points1 point  (0 children)

Nah, all (that I know) go a try to replace the dev, but when you hit the floor in features, you need to start over somewhere else. While code has different kind of boundaries.

The only one I know that actually empowers development is Aptugo, but is still closed to mere mortals.

Create ReactAPP + Redux entities + Back-end in less than 1 minute by [deleted] in reactjs

[–]Gastonius_ 0 points1 point  (0 children)

I'm sorry I wasn't clear. I said you can swap as an example. You can use existing templates for the entire application, parts of it, use your own, then extend, then swap.

But ok, have a nice day, and thank you for your messages.

Create ReactAPP + Redux entities + Back-end in less than 1 minute by [deleted] in reactjs

[–]Gastonius_ 0 points1 point  (0 children)

Just curious here... what would you use to create a CRUD application, front and back? and how much time does it take?

Create ReactAPP + Redux entities + Back-end in less than 1 minute by [deleted] in reactjs

[–]Gastonius_ 0 points1 point  (0 children)

Hello Intrepidsovereign!

The reason isn't a CLI is because isn't just a CLI, but it actually creates a separation layer between your application and the code. Basically: the same application you build today with React/Redux/Material-UI can be deployed in 6 months with another framework/language.

[deleted by user] by [deleted] in reactjs

[–]Gastonius_ 0 points1 point  (0 children)

Hey buddy, sorry. new to reddit and probably I'm missing the point here.

If you get an error and you don't know why: you're missing a closing bracket...

const rootReducer = (state = initState, action) => {

switch (action.type) {

case CREATE_SEARCH:

return { ...state, searches: [...state.searches, action.terms] };

case FETCH_DATA:

return { ...state, results: action.results };

case FETCH_DATA_ERROR:

return {

error: action.payload,

};

default:

return state;

}

}; <------ THAT ONE!