Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I good learn react. But I know about nextjs I want to use this framework with create-react-app. How can I do? or do have solve problems SSR without nextjs? Where I find good simple good example or tutorial?
If you already have your app with CRA (create-react-app) then you will probably need to migrate into a new next app using npx create-next-app.
This will create a next configuration and then you will need to migrate each component to use this new structure, this is almost straight forward here you have documentation:
https://nextjs.org/docs/migrating/from-create-react-app
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm just starting out to learn React, trying to render react from my localhost, but this error seems to be showing, any advice?
By what I can assume, you are probably trying to run a react app in NodeJS, and this wont work.
Since React uses JSX, you'l need to transpile it before it will work there too.
One way to make this work is, develop a react app independently, once your done make a build of the app and then place it inside you NodeJS app folder
Or maybe follow this and this
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I really enjoy using vue and nuxt. But I think mobile development or better "mobile and web development with the same code" is the future.
Is there a good way to use vue for that? Or should I switch gears?
There only seem to be flutter and react native. React did seem quite interesting on a first glance.
greetings
Check vue-native
You can build cross platform apps based on JavaScript and Vue JS!
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to understand when I should use CMS like WordPress and when to use a single page application framework like React and Vue when creating a website. Any help?
WordPress can be used without any (barely any) coding skills. It's also a fast way to get a templated website running. If you don't know how to code, don't have a lot of time, and have a simple site, use WordPress
If you have coding knowledge, have time, and have a complex application, you won't be able to use WordPress, and you will find that out quite quickly.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Right now i am going to do project in react admin. I need to know the difference between react and react admin. Iam using the link https://marmelab.com/react-admin/
React is a library that enables you to build web applications based on the component concept, and it represents the V "view" in the MVC pattern. React-Admin is a Web Framework for B2B applications, built using React.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Are Next.js and Gatsby.js using the split code Loadable Component ?
The loadable component I am talking about is the one recommended by the Facebook team https://github.com/gregberge/loadable-components
I am lazy at searching this.
If you reply I'll give points.
If you're using npm, you may find that out by doing a deep search of dependency tree on your Next.js or Gatsby projects using the npm ls command.
Neither the latest version of Next.js, nor Gatsby use the package you specified.
Next.js implements this feature with dynamic imports.
And Gatsby has a separate plugin for the job: gatsby-plugin-loadable-components.