5 ms·
NextJS is pretty much the go-to for making decent webapps, check out KeystoneJS if you want to make a custom CMS.
by mrinfinitiesx 2y ago
NextJS is pretty much the go-to for making decent webapps, check out KeystoneJS if you want to make a custom CMS.
- DidYaWipe 2y agoThanks, but that doesn't address my question. Let me rephrase: Is NextJS a full back-end, or is it only for presentation? Would you use it in combination with something like Deno, or instead of it?
- mhio 2y agoNext.js won't require a Deno backend. You can define backend data fetches [0] along with the UI Pages and routes for an API [1]. Of course the NextJS application could call out to a Deno backend as well, but the external app is not required. - [0] https://nextjs.org/docs/pages/building-your-application/data-fetching/get-server-side-props https://nextjs.org/docs/pages/building-your-application/data... - [1] https://nextjs.org/docs/pages/building-your-application/routing/api-routes https://nextjs.org/docs/pages/building-your-application/rout...
- DidYaWipe 2y agoThanks!