ACAlger Cheninalger.hashnode.dev·Sep 30, 2021 · 2 min readReact Custom hook - useQueryStringCustom hook for simple get and set QueryString demo demo-typescript install package react-router-dom // src/index.js import { StrictMode } from "react"; import ReactDOM from "react-dom"; + import { BrowserRouter as Router } from "react-router...00
ACAlger Cheninalger.hashnode.dev·Sep 19, 2021 · 2 min readElectron + React Debug with WebStormRun / Add configurations... Add npm Scripts: react-start Environment: PORT=3003 BROWSER=none When it finish, Click OK button on then bottom-right. Then run the config, ensure it is success run server. You could open http://localhost:3003 on the ...00
ACAlger Cheninalger.hashnode.dev·Sep 19, 2021 · 4 min readElectron + React Debug in Visual Studio CodePrevious post has Build a React based Electron app Now I will setup Visual Studio Code for debugging electron app. In addition about Electron Process Model you can read. After read Electron Debugging the Main Process, I need add --inspect=[port] or -...00
ACAlger Cheninalger.hashnode.dev·Sep 18, 2021 · 4 min readBuild a React based Electron appBuild a React based Electron app Electron + React app template electron-react-boilerplate Electron React Template But how can we trying to start by known command line tools (create-react-app)? I will create Electron + React app with yarn command, b...02MA