Questions tagged [react-boilerplate]

React Boilerplate - A highly scalable, offline-first foundation with the best developer experience and a focus on performance and best practices.

219 questions
3
votes
1 answer

when using feathers express, it gives page not found error #2355

I'm intergrating feathers js both on backend and frontend and I got page not found error when I tried this implementation. I would appreciate your help. thanks for the awesome…
3
votes
1 answer

Why are default states on redux initialized to false instead of empties?

I am not sure if this is common practice, but while I was going through the highly popular react-boilerplate app I noticed that the default value of the store keys were always getting set to false regardless of whether the actual type is Array,…
nikjohn
  • 20,026
  • 14
  • 50
  • 86
3
votes
2 answers

Refresh react app, 404 error. React router issue

I'm using react-boilerplate (https://github.com/react-boilerplate/react-boilerplate) My app works perfectly on localhost, but after deploying on the server in a SUBDIRECTORY (important! not in the root!) application works until refreshing...If i try…
3
votes
0 answers

How do I access the Twitter API from my website to display my latest tweet?

Background: I'm using the react-boilerplate to build a personal website, and I would like to display my latest tweet in the footer. I do not want the embedded card, only the tweet itself (similar to the Momentum extension). This appears to be what I…
Phunkren
  • 188
  • 1
  • 6
3
votes
1 answer

substate.get() is not a function using React Boilerplate

I have a component called Login, and these selectors: const selectLogin = () => (state) => state.get('login'); const selectUser = () => createSelector( selectLogin(), (loginState) => loginState.get('user') ); Here's what state looks like for…
James Bowler
  • 2,194
  • 2
  • 17
  • 23
3
votes
3 answers

How to create Anchor Tag in react-router?

I am using react-boilerplate (3.4.0) with react-router internally for the routing. I have tried to create a Link with : < a href="#anchor-tag" >< /a > When I click on it I expect to scroll to the div with id=anchor-tag It just scroll to the top of…
Adrien Gadaud
  • 149
  • 2
  • 12
3
votes
1 answer

Redux-saga with Internet Explorer

I have a React app using redux-saga in IE 11 It seems to be breaking with the following error Note that this app works perfectly fine in Chrome for versions of last 3 years and in Safari as well (aside for some display issues) sagas.js // functions…
dowjones123
  • 3,695
  • 5
  • 40
  • 83
3
votes
2 answers

React-boilerplate+grommet, making sass work with webpack

I have more than 10 years of exp in Python and Flask with primary focus on backend and very little HTML + JavaScript however zero CSS. I started on React and JavaScript about 6 weeks ago and made simple apps using react which did not required much…
2
votes
1 answer

reset redux store on logout when using react-injectors

I have the same problem as addressed in the following question. but with a different library. How to reset the state of a Redux store? I am using redux-injectors from react-boilerplate and am using the enhancers provided from the library. I need to…
Prateek
  • 834
  • 9
  • 28
2
votes
1 answer

Dispatching components via react-redux

I want to pass a component and display it inside another one through redux. I am doing something like this: ComponentToDispatch.js const ComponentToDispatch = (props) => { return (
Propagate me {props.anthem}
{/* props.anthem =…
Davood Falahati
  • 1,474
  • 16
  • 34
2
votes
1 answer

React-router V-5.2.0 is not working when navigating away from homepage

index.tsx import {Router, } from 'react-router'; import { createHashHistory } from 'history'; const hashHistory = createHashHistory(); hashHistory.push("/"); ReactDOM.render(
Mark Andog
  • 109
  • 1
  • 10
2
votes
0 answers

Is there any OSS projects that manage React / NodeJS + Express CRUD app with PostgreSQL?

I have MERN ( Mongo SailsJS React NodeJS ) app. After reviewing the code, there is a quite poor quality, pages are not well thought, and each change I would have to make in the future will be hard. Besides, I may want to switch SailJS for Express,…
Juliatzin
  • 18,455
  • 40
  • 166
  • 325
2
votes
0 answers

Enzyme Internal Error: unknown node with tag 15 using React Boiler Plate

Using Jest for my tests, I just downloaded and installed React Boilerplate with Dandelion Template and configured Jest, when running npm test this is what came up: this is the test the error it pointing to: import React from 'react'; import {…
assembler
  • 3,098
  • 12
  • 43
  • 84
2
votes
1 answer

The DLL manifest is missing

I must do some changes on a project, the problem is that when I try to run it using npm start every time I get error. The error is: The DLL manifest is missing. please run npm run build:dll When I run npm run build:dll I get Building the…
Borealis
  • 1,059
  • 2
  • 18
  • 37
2
votes
1 answer

Redux reducer running multiple times when unused action is first dispatched

Update: I'm using React-Boilerplate, unmodified from the original except in the containers / components. The reducers run multiple times, sometimes more than twice, when a new action is dispatched for the first time, but not when the same action is…
qdog
  • 151
  • 1
  • 9
1 2
3
14 15