How to create a React app without webpack and Create-react-app - reactjs

without using webpack and create-react-app how to create a React app
i would like to use following in my react application
1.redux
2.react routing

You can simply copy the cdn and implement your component to the project. That is if you have already a web page and you want to implement a few components with reactJs. Check this page has your answer.
https://reactjs.org/docs/add-react-to-a-website.html

Related

How to use react-router-dom in React + Electron?

I have problem to use react-router-dom for build desktop app with React JS and Electron. I want my App can move like single page application as my website that build with React. But after build React and Electron, the react-router-dom cant display, even i got white screen
pls help me to fix it
I hope:
i want to know how to use react-router-dom for build electron app

How to publish full React app as an npm Package

How can I publish my react app as an NPM package?
I have a task that My react app should work in any other app like angular or vue apps.
I tried a alibrary that convert my react component to a web component and it did work on angular and vue apps. But It's only signle components
How can I Push all the components as one single package as a web component so when someone install it he will use only one tag to run my app?
and is React SDK related to this?

How to use Create-React-App in non react app

I have created an app using create-react-app. I want to build it so I can add it to a non-React webpage. How do I bundle it up so I can just add the script at the bottom of an HTML page and the app will show?

How can i have next js and react app in the same project?

How is it possible to integrate in the same project next js (for multilingual seo) and react app for the admin part of the user ?
What you are building with next.js is actually a React app, what do you really mean? If the one application is next.js based and the other one is create-react-app or something like that, then no, you need to run (or serve) them separately.

IPFS module not found while running React app

I am using a react app inside another react app. The one within is having IPFS usage. I am getting this error.
Found he solution. Install all dependencies at one place at outer react app and not individually.

Resources