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.

214 questions
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
  • 2,077
  • 7
  • 24
  • 44
2
votes
0 answers

How to check installed package versions of deployed React application?

We used react-boilerplate to create and application. And we've used material-ui as the UI library and hosted on Azure IIS. Due to a recent material-ui package release, somethings are breaking on local environment and not in the deployed application.…
2
votes
3 answers

Adding an .env file to React Project not working

I am trying to add .env file and variables but I am unable to access any variable. I am using React Biolerplate Code. I am following this React Docs File. I have added one .env file in my root folder like…
Nilay Singh
  • 1,753
  • 3
  • 19
  • 49
2
votes
0 answers

How to create electron auto updates using private github repository?

The update is being detected but I'm unable to download it to my app. I get the following error: Status: Update Available Status: Error in auto-updater. Error: Cannot download…
2
votes
1 answer

Can not provide/test saga when using a reselect selector

I've been writing some redux-saga tests using redux-saga-test-plan but having some issues when trying to provide some selects to fake some values to the expectSaga test. It seems as though the provider isn't replacing our reselect function call with…
2
votes
1 answer

React-Boilerplate default tests throw TypeError: Cannot read property 'store' of null

I'm using React-Boilerplate to write an application and I want to test connected react components. The default "npm run generate" script generates a component/container with default tests. The index.test.js script fails by default with the following…
Jason1
  • 21
  • 3
2
votes
0 answers

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,021
  • 1
  • 12
  • 29
2
votes
2 answers

React boilerplate : Maximum call stack size exceeded

I'm trying to create react-boilerplate but got bellow error. npm ERR! Maximum call stack size exceeded npm ERR! A complete log of this run can be found in: npm ERR! /home/dev1/.npm/_logs/2019-02-05T10_12_55_340Z-debug.log npm ERR! code…
Vipul Solanki
  • 197
  • 1
  • 17
2
votes
1 answer

Uncaught TypeError: Object(...) is not a function at eval (global-styles.js)

I migrated my project from react boilerplate 3.5.0 to 3.7.0. The boilerplate structure changed a little, and I needed to update some dependencies, but finally webpack compiled with no errors. But here is the console of my browser: This is the…
assembler
  • 2,077
  • 7
  • 24
  • 44
2
votes
0 answers

react webpack build tool for multiple brand

I am using react boilerplate for my project. I am wondering how can I use the same codebase for multiple brand? Thing is like that : multiple brand might have multiple color, different text, and the functionality might be different. The scenario…
oxvoxic
  • 307
  • 2
  • 4
  • 19
2
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…
2
votes
2 answers

React Boilerplate: Dumb components re-render when the data in

I have a used react-boilerplate to setup the base for my project. Consider I have a container and 2 components(dumb components) like below, App - HomePage(Connected component with sidebarData and detailedData) - SideBar(data=sidebarData) …
Kamalakannan J
  • 2,447
  • 3
  • 14
  • 42
2
votes
1 answer

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…
2
votes
1 answer

Import a javascript file globally using webpack ProvidePlugin

I have a function to make network calls and i want that function to be globally available without me having to import it every time i need to use the function Request.js import 'whatwg-fetch'; /** * Parses the JSON returned by a network request …
2
votes
0 answers

Application error when deploying on heroku

I used react-boilerplate, to create app. It works fine on localhost. I push it on heroku to deploy it. Seems it deployed without any problem. But at the end I get an Application error.I tried delete node_modules, and npm install again, but it not…
1 2
3
14 15